ETH Price: $3,486.75 (+3.43%)
Gas: 4 Gwei

Token

Dynamic Duelers (HEROES)
 

Overview

Max Total Supply

983 HEROES

Holders

393

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
maexmiller.eth
Balance
1 HEROES
0xc458e1a4ec03c5039fbf38221c54be4e63731e2a
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DynamicDuelers

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-30
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}


// Openzeppelin AccessControl

pragma solidity ^0.8.0;

abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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/ERC721.sol

pragma solidity ^0.8.0;


/**
 * @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/utils/Strings.sol

pragma solidity ^0.8.0;


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

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

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

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

pragma solidity ^0.8.0;

/**
 * @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(to).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 {}
}

pragma solidity ^0.8.0;



/**
 * @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/utils/introspection/ERC165.sol1

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

pragma solidity ^0.8.0;

contract DynamicDuelers is ERC721, ERC721Enumerable, AccessControl, Ownable {
    
  
  // Provenance
  string public duelerHash = "";

  // Total supply = 10000 = 9100 + 200 + 200 + 500
  uint16 constant retailSupply = 9100;
  uint256 public devReserve = 200;
  uint256 public stakerSupply = 200;
  uint256 public presaleSupply = 500;
  
  uint256 public devMinted = 0;
  uint256 public stakerMinted = 0;
  uint256 public presaleMinted = 0;

  // Internals
  string private _baseTokenURI;
  uint256 public startingIndexBlock;
  uint256 public startingIndex;  

  // Sale
  bool public hasSaleStarted = false;
  bool public hasPresaleStarted = false; 
  uint64 public priceIncreaseAt = 8500;
  uint16 public MAX_MINT_PER_CALL = 15;
  
  
  // Access control role set up
  
  bytes32 public constant MODERATOR_ROLE = keccak256("MODERATOR_ROLE");
  bytes32 public constant STAKER_ROLE = keccak256("STAKER_ROLE");
  
  // Contract is coded in a way that msg.sender will never have the ownership, even if specified in the constructor owner variable
  // Message sender is instead given the moderator role, with limited access
  
  constructor() ERC721("Dynamic Duelers", "HEROES") { 
    _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); // Temporarily gives the message sender admin access as a workaround for AccessControl limitations
    grantRole(MODERATOR_ROLE, msg.sender);
    _setRoleAdmin(STAKER_ROLE, MODERATOR_ROLE);
  }

  // Grants the list of addresses the staker role, useful, to save GAS
  
  function addMultipleStakerRoles(address[] memory _stakers) public onlyRole(MODERATOR_ROLE){
  for(uint i = 0; i < _stakers.length; i++) grantRole(STAKER_ROLE, _stakers[i]);
  }
  
  // Everything concerning token URI

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

  function setBaseURI(string memory baseURI) public onlyOwner{
    _baseTokenURI = baseURI;
  }
  
  function getBaseURI() external view returns(string memory) {
    return _baseTokenURI;
  }
  
  // Sets the price for the NFT's 
  
  function getHeroPrice() public view returns (uint256) {
    uint currentSupply = totalSupply();
    if (currentSupply >= 0 && currentSupply < 501){
        return 35000000000000000;
    }else if(currentSupply >= 501 && currentSupply < 5000){
        return 65000000000000000;
    }else if(currentSupply >= 5001){
        return 70000000000000000;
    }
   }
    
  function priceRange() public view returns (uint256) {
    uint256 range = priceIncreaseAt - totalSupply();
    return range;
  }
    
  function mint(uint256 numNFTs) public payable {
    require(hasSaleStarted, "Sale has not started");
    require(retailSupply > totalSupply() - devMinted - stakerMinted - presaleMinted, "Sale has ended");
    require(numNFTs > 0 && numNFTs <= MAX_MINT_PER_CALL, "Exceeds MAX_MINT_PER_CALL");
    require(numNFTs <= priceRange(), "Number of NFTs would exceed the price range");
    require(retailSupply >= totalSupply() + numNFTs - devMinted - stakerMinted - presaleMinted, "Exceeds retail supply");
    require(msg.value >= getHeroPrice() * numNFTs, "Incorrect ether value");

    for (uint i = 0; i < numNFTs; i++) {
      uint mintIndex = totalSupply() + 1; // +1 so it doesn't start on index 0.
      _safeMint(msg.sender, mintIndex);
    }

    // If we haven't set the starting index and this is either 1) the last saleable token or 2) the first token to be sold after
    // the end of pre-sale, set the starting index block
    if (startingIndexBlock == 0 && (totalSupply() == retailSupply)) {
      startingIndexBlock = block.number;
    } 
  }
  
  function presaleMint(uint256 numNFTs) public payable {
    require(hasPresaleStarted, "Sale has not started");
    require(presaleSupply > 0, "Presale supply is depleted");
    require(msg.value >= getHeroPrice() * numNFTs, "Incorrect ether value");
    require(presaleSupply - numNFTs >= 0, "Exceeds presaile supply, mint fewer NFT's");
    require(numNFTs <= priceRange(), "Number of NFTs would exceed the price range");
    
    for (uint i = 0; i < numNFTs; i++) {
      uint mintIndex = totalSupply() + 1; // +1 so it doesn't start on index 0.
      _safeMint(msg.sender, mintIndex);
    }
      
    if (startingIndexBlock == 0 && (totalSupply() == retailSupply)) {
      startingIndexBlock = block.number;}
      
    presaleSupply = presaleSupply - numNFTs;
    presaleMinted = presaleMinted + numNFTs;
  }
  
  // minting function for stakes 
  
  function mintForStakers(uint256 numNFTs) public payable onlyRole(STAKER_ROLE){
    require(hasSaleStarted, "Sale has not started");
    require(stakerSupply > 0, "Staker reserve is empty!");
    require(msg.value >= getHeroPrice() * numNFTs, "Incorrect ether value");
    require(stakerSupply - numNFTs >= 0, "Exceeds retail supply");
    require(numNFTs <= priceRange(), "Number of NFTs would exceed the price range");
    
    for (uint i = 0; i < numNFTs; i++) {
      uint mintIndex = totalSupply() + 1; // +1 so it doesn't start on index 0.
      _safeMint(msg.sender, mintIndex);
    }
      
    if (startingIndexBlock == 0 && (totalSupply() == retailSupply)) {
      startingIndexBlock = block.number;}
      
    stakerSupply = stakerSupply - numNFTs;
    stakerMinted = stakerMinted + numNFTs;
  }
  
  function devMint(uint256 numNFTs) public onlyOwner{
      require(numNFTs <= devReserve, "Not enough in the dev reserve, mint a smaller ammount");
      
      for (uint i = 0; i < numNFTs; i++) {
      uint mintIndex = totalSupply() + 1; // +1 so it doesn't start on index 0.
      _safeMint(msg.sender, mintIndex);
        }
      
      devReserve = devReserve - numNFTs;
      devMinted = devMinted + numNFTs;
      
      if (startingIndexBlock == 0 && (totalSupply() == retailSupply)) {
      startingIndexBlock = block.number;}
  }

  function flipSaleState() public onlyRole(MODERATOR_ROLE) {
    hasSaleStarted = !hasSaleStarted;
  }
  
  function flipPresaleState() public onlyRole(MODERATOR_ROLE){
      hasPresaleStarted = !hasPresaleStarted;
  }
  
  function withdraw() public onlyOwner{
    require(payable(msg.sender).send(address(this).balance));
  }
  function _beforeTokenTransfer(address from, address to, uint256 tokenId)
    internal
    override(ERC721, ERC721Enumerable)
  {
    super._beforeTokenTransfer(from, to, tokenId);
  }

  function _burn(uint256 tokenId) internal override(ERC721) {
    super._burn(tokenId);
  }

  function tokenURI(uint256 tokenId)
    public
    view
    override(ERC721)
    returns (string memory)
  {
    return super.tokenURI(tokenId);
  }
  function supportsInterface(bytes4 interfaceId)
    public
    view
    override(ERC721, ERC721Enumerable, AccessControl)
    returns (bool)
  {
    return super.supportsInterface(interfaceId);
  }

  function setStartingIndex() public {
    require(startingIndex == 0, "Starting index is already set");
    require(startingIndexBlock != 0, "Starting index block must be set");
    
    startingIndex = uint(blockhash(startingIndexBlock)) % retailSupply;
    // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
    if (block.number - startingIndexBlock > 255) {
      startingIndex = uint(blockhash(block.number - 1)) % retailSupply;
    }
    // Prevent default sequence
    if (startingIndex == 0) {
      startingIndex = startingIndex + 1;
    }
  }

  function emergencySetStartingIndexBlock() public onlyRole(MODERATOR_ROLE){
    require(startingIndex == 0, "Starting index is already set");
    startingIndexBlock = block.number;
  }

  function setProvenanceHash(string memory provenanceHash) public onlyRole(MODERATOR_ROLE){
    duelerHash = provenanceHash;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_CALL","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MODERATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_stakers","type":"address[]"}],"name":"addMultipleStakerRoles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numNFTs","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duelerHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getHeroPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasPresaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasSaleStarted","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":[{"internalType":"uint256","name":"numNFTs","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numNFTs","type":"uint256"}],"name":"mintForStakers","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numNFTs","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceIncreaseAt","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceRange","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakerMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakerSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b92919062000918565b5060c8600d5560c8600e556101f4600f556000601055600060115560006012556000601660006101000a81548160ff0219169083151502179055506000601660016101000a81548160ff021916908315150217905550612134601660026101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600f6016600a6101000a81548161ffff021916908361ffff160217905550348015620000d757600080fd5b506040518060400160405280600f81526020017f44796e616d6963204475656c65727300000000000000000000000000000000008152506040518060400160405280600681526020017f4845524f4553000000000000000000000000000000000000000000000000000081525081600090805190602001906200015c92919062000918565b5080600190805190602001906200017592919062000918565b505050620001986200018c6200023760201b60201c565b6200023f60201b60201c565b620001ad6000801b336200030560201b60201c565b620001df7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f336200031b60201b60201c565b620002317fb9e206fa2af7ee1331b72ce58b6d938ac810ce9b5cdb65d35ab723fd67badf9e7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f6200036460201b60201c565b62000d87565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003178282620003c860201b60201c565b5050565b6200032c82620004ba60201b60201c565b6200034d81620003416200023760201b60201c565b620004da60201b60201c565b6200035f8383620003c860201b60201c565b505050565b60006200037783620004ba60201b60201c565b905081600a6000858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b620003da82826200059e60201b60201c565b620004b6576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200045b6200023760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000600a6000838152602001908152602001600020600101549050919050565b620004ec82826200059e60201b60201c565b6200059a576200051f8173ffffffffffffffffffffffffffffffffffffffff1660146200060960201b620027f21760201c565b6200053a8360001c60206200060960201b620027f21760201c565b6040516020016200054d92919062000b06565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000591919062000b48565b60405180910390fd5b5050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600060028360026200061e919062000c12565b6200062a919062000bb5565b67ffffffffffffffff8111156200066a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156200069d5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110620006fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811062000787577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002620007c9919062000c12565b620007d5919062000bb5565b90505b6001811115620008c7577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106200083f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106200087d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080620008bf9062000cb3565b9050620007d8565b50600084146200090e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009059062000b6c565b60405180910390fd5b8091505092915050565b828054620009269062000ce2565b90600052602060002090601f0160209004810192826200094a576000855562000996565b82601f106200096557805160ff191683800117855562000996565b8280016001018555821562000996579182015b828111156200099557825182559160200191906001019062000978565b5b509050620009a59190620009a9565b5090565b5b80821115620009c4576000816000905550600101620009aa565b5090565b6000620009d58262000b8e565b620009e1818562000b99565b9350620009f381856020860162000c7d565b620009fe8162000d76565b840191505092915050565b600062000a168262000b8e565b62000a22818562000baa565b935062000a3481856020860162000c7d565b80840191505092915050565b600062000a4f60208362000b99565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b600062000a9160178362000baa565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b600062000ad360118362000baa565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b600062000b138262000a82565b915062000b21828562000a09565b915062000b2e8262000ac4565b915062000b3c828462000a09565b91508190509392505050565b6000602082019050818103600083015262000b648184620009c8565b905092915050565b6000602082019050818103600083015262000b878162000a40565b9050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600062000bc28262000c73565b915062000bcf8362000c73565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000c075762000c0662000d18565b5b828201905092915050565b600062000c1f8262000c73565b915062000c2c8362000c73565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000c685762000c6762000d18565b5b828202905092915050565b6000819050919050565b60005b8381101562000c9d57808201518184015260208101905062000c80565b8381111562000cad576000848401525b50505050565b600062000cc08262000c73565b9150600082141562000cd75762000cd662000d18565b5b600182039050919050565b6000600282049050600182168062000cfb57607f821691505b6020821081141562000d125762000d1162000d47565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b615cf78062000d976000396000f3fe6080604052600436106103505760003560e01c806373aee929116101c6578063b3a196e9116100f7578063e36d649811610095578063ed4956421161006f578063ed49564214610bf1578063f2fde38b14610c1c578063f81227d414610c45578063fcd2a42714610c5c57610350565b8063e36d649814610b72578063e985e9c514610b9d578063e986655014610bda57610350565b8063c87b56dd116100d1578063c87b56dd14610ac5578063c9b298f114610b02578063cb774d4714610b1e578063d547741f14610b4957610350565b8063b3a196e914610a46578063b88d4fde14610a71578063bea9d36914610a9a57610350565b806395d89b4111610164578063a22cb4651161013e578063a22cb4651461099c578063a8c02a41146109c5578063adf2131b146109f0578063b022001514610a1b57610350565b806395d89b411461092a578063a0712d6814610955578063a217fddf1461097157610350565b80637d17fcbe116101a05780637d17fcbe146108805780638da5cb5b146108975780638deb1b3d146108c257806391d14854146108ed57610350565b806373aee929146107ff578063797669c91461082a5780637aec9b0b1461085557610350565b80633325d3f6116102a05780634f6ccce71161023e5780636352211e116102185780636352211e1461074357806370a0823114610780578063714c5398146107bd578063715018a6146107e857610350565b80634f6ccce7146106c157806355f804b3146106fe5780635ab04aa61461072757610350565b8063375a069a1161027a578063375a069a1461062d5780633780b3ed146106565780633ccfd60b1461068157806342842e0e1461069857610350565b80633325d3f6146105c457806334918dfd146105ed57806336568abe1461060457610350565b80631c8b232d1161030d57806324101777116102e757806324101777146104f6578063248a9ca3146105215780632f2ff15d1461055e5780632f745c591461058757610350565b80631c8b232d146104775780631eed3218146104a257806323b872dd146104cd57610350565b806301ffc9a71461035557806306fdde0314610392578063081812fc146103bd578063095ea7b3146103fa578063109695231461042357806318160ddd1461044c575b600080fd5b34801561036157600080fd5b5061037c60048036038101906103779190614561565b610c87565b604051610389919061530b565b60405180910390f35b34801561039e57600080fd5b506103a7610c99565b6040516103b49190615341565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df91906145f4565b610d2b565b6040516103f191906152a4565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c919061447f565b610db0565b005b34801561042f57600080fd5b5061044a600480360381019061044591906145b3565b610ec8565b005b34801561045857600080fd5b50610461610f15565b60405161046e919061577e565b60405180910390f35b34801561048357600080fd5b5061048c610f22565b604051610499919061530b565b60405180910390f35b3480156104ae57600080fd5b506104b7610f35565b6040516104c4919061577e565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190614379565b610faf565b005b34801561050257600080fd5b5061050b61100f565b604051610518919061577e565b60405180910390f35b34801561052d57600080fd5b50610548600480360381019061054391906144fc565b611015565b6040516105559190615326565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190614525565b611035565b005b34801561059357600080fd5b506105ae60048036038101906105a9919061447f565b61105e565b6040516105bb919061577e565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e691906144bb565b611103565b005b3480156105f957600080fd5b506106026111c3565b005b34801561061057600080fd5b5061062b60048036038101906106269190614525565b611222565b005b34801561063957600080fd5b50610654600480360381019061064f91906145f4565b6112a5565b005b34801561066257600080fd5b5061066b6113fe565b6040516106789190615326565b60405180910390f35b34801561068d57600080fd5b50610696611422565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190614379565b6114de565b005b3480156106cd57600080fd5b506106e860048036038101906106e391906145f4565b6114fe565b6040516106f5919061577e565b60405180910390f35b34801561070a57600080fd5b50610725600480360381019061072091906145b3565b611595565b005b610741600480360381019061073c91906145f4565b61162b565b005b34801561074f57600080fd5b5061076a600480360381019061076591906145f4565b61187a565b60405161077791906152a4565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190614314565b61192c565b6040516107b4919061577e565b60405180910390f35b3480156107c957600080fd5b506107d26119e4565b6040516107df9190615341565b60405180910390f35b3480156107f457600080fd5b506107fd611a76565b005b34801561080b57600080fd5b50610814611afe565b604051610821919061577e565b60405180910390f35b34801561083657600080fd5b5061083f611b04565b60405161084c9190615326565b60405180910390f35b34801561086157600080fd5b5061086a611b28565b6040516108779190615341565b60405180910390f35b34801561088c57600080fd5b50610895611bb6565b005b3480156108a357600080fd5b506108ac611c37565b6040516108b991906152a4565b60405180910390f35b3480156108ce57600080fd5b506108d7611c61565b6040516108e49190615799565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f9190614525565b611c7b565b604051610921919061530b565b60405180910390f35b34801561093657600080fd5b5061093f611ce6565b60405161094c9190615341565b60405180910390f35b61096f600480360381019061096a91906145f4565b611d78565b005b34801561097d57600080fd5b50610986612031565b6040516109939190615326565b60405180910390f35b3480156109a857600080fd5b506109c360048036038101906109be9190614443565b612038565b005b3480156109d157600080fd5b506109da6121b9565b6040516109e7919061577e565b60405180910390f35b3480156109fc57600080fd5b50610a056121bf565b604051610a12919061577e565b60405180910390f35b348015610a2757600080fd5b50610a306121c5565b604051610a3d919061530b565b60405180910390f35b348015610a5257600080fd5b50610a5b6121d8565b604051610a68919061577e565b60405180910390f35b348015610a7d57600080fd5b50610a986004803603810190610a9391906143c8565b6121de565b005b348015610aa657600080fd5b50610aaf612240565b604051610abc919061577e565b60405180910390f35b348015610ad157600080fd5b50610aec6004803603810190610ae791906145f4565b61227f565b604051610af99190615341565b60405180910390f35b610b1c6004803603810190610b1791906145f4565b612291565b005b348015610b2a57600080fd5b50610b336124ad565b604051610b40919061577e565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b9190614525565b6124b3565b005b348015610b7e57600080fd5b50610b876124dc565b604051610b94919061577e565b60405180910390f35b348015610ba957600080fd5b50610bc46004803603810190610bbf919061433d565b6124e2565b604051610bd1919061530b565b60405180910390f35b348015610be657600080fd5b50610bef612576565b005b348015610bfd57600080fd5b50610c06612681565b604051610c139190615763565b60405180910390f35b348015610c2857600080fd5b50610c436004803603810190610c3e9190614314565b612695565b005b348015610c5157600080fd5b50610c5a61278d565b005b348015610c6857600080fd5b50610c716127ec565b604051610c7e919061577e565b60405180910390f35b6000610c9282612aec565b9050919050565b606060008054610ca890615ad5565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd490615ad5565b8015610d215780601f10610cf657610100808354040283529160200191610d21565b820191906000526020600020905b815481529060010190602001808311610d0457829003601f168201915b5050505050905090565b6000610d3682612b66565b610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c906155c3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dbb8261187a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390615643565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e4b612bd2565b73ffffffffffffffffffffffffffffffffffffffff161480610e7a5750610e7981610e74612bd2565b6124e2565b5b610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb0906154e3565b60405180910390fd5b610ec38383612bda565b505050565b7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f610efa81610ef5612bd2565b612c93565b81600c9080519060200190610f1092919061408d565b505050565b6000600880549050905090565b601660009054906101000a900460ff1681565b600080610f40610f15565b905060008110158015610f5457506101f581105b15610f6957667c585087238000915050610fac565b6101f58110158015610f7c575061138881105b15610f915766e6ed27d6668000915050610fac565b6113898110610faa5766f8b0a10e470000915050610fac565b505b90565b610fc0610fba612bd2565b82612d30565b610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690615683565b60405180910390fd5b61100a838383612e0e565b505050565b600e5481565b6000600a6000838152602001908152602001600020600101549050919050565b61103e82611015565b61104f8161104a612bd2565b612c93565b611059838361306a565b505050565b60006110698361192c565b82106110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190615383565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f61113581611130612bd2565b612c93565b60005b82518110156111be576111ab7fb9e206fa2af7ee1331b72ce58b6d938ac810ce9b5cdb65d35ab723fd67badf9e84838151811061119e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611035565b80806111b690615b07565b915050611138565b505050565b7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f6111f5816111f0612bd2565b612c93565b601660009054906101000a900460ff1615601660006101000a81548160ff02191690831515021790555050565b61122a612bd2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90615743565b60405180910390fd5b6112a1828261314b565b5050565b6112ad612bd2565b73ffffffffffffffffffffffffffffffffffffffff166112cb611c37565b73ffffffffffffffffffffffffffffffffffffffff1614611321576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611318906155e3565b60405180910390fd5b600d54811115611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90615583565b60405180910390fd5b60005b818110156113a7576000600161137d610f15565b61138791906158b4565b9050611393338261322d565b50808061139f90615b07565b915050611369565b5080600d546113b69190615995565b600d81905550806010546113ca91906158b4565b60108190555060006014541480156113ee575061238c61ffff166113ec610f15565b145b156113fb57436014819055505b50565b7fb9e206fa2af7ee1331b72ce58b6d938ac810ce9b5cdb65d35ab723fd67badf9e81565b61142a612bd2565b73ffffffffffffffffffffffffffffffffffffffff16611448611c37565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611495906155e3565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506114dc57600080fd5b565b6114f9838383604051806020016040528060008152506121de565b505050565b6000611508610f15565b8210611549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611540906156c3565b60405180910390fd5b60088281548110611583577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61159d612bd2565b73ffffffffffffffffffffffffffffffffffffffff166115bb611c37565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611608906155e3565b60405180910390fd5b806013908051906020019061162792919061408d565b5050565b7fb9e206fa2af7ee1331b72ce58b6d938ac810ce9b5cdb65d35ab723fd67badf9e61165d81611658612bd2565b612c93565b601660009054906101000a900460ff166116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a390615723565b60405180910390fd5b6000600e54116116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e8906155a3565b60405180910390fd5b816116fa610f35565b611704919061593b565b341015611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d906156e3565b60405180910390fd5b600082600e546117569190615995565b1015611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e906154c3565b60405180910390fd5b61179f612240565b8211156117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d8906156a3565b60405180910390fd5b60005b8281101561182257600060016117f8610f15565b61180291906158b4565b905061180e338261322d565b50808061181a90615b07565b9150506117e4565b506000601454148015611841575061238c61ffff1661183f610f15565b145b1561184e57436014819055505b81600e5461185c9190615995565b600e819055508160115461187091906158b4565b6011819055505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90615523565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199490615503565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060601380546119f390615ad5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1f90615ad5565b8015611a6c5780601f10611a4157610100808354040283529160200191611a6c565b820191906000526020600020905b815481529060010190602001808311611a4f57829003601f168201915b5050505050905090565b611a7e612bd2565b73ffffffffffffffffffffffffffffffffffffffff16611a9c611c37565b73ffffffffffffffffffffffffffffffffffffffff1614611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906155e3565b60405180910390fd5b611afc600061324b565b565b60125481565b7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f81565b600c8054611b3590615ad5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6190615ad5565b8015611bae5780601f10611b8357610100808354040283529160200191611bae565b820191906000526020600020905b815481529060010190602001808311611b9157829003601f168201915b505050505081565b7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f611be881611be3612bd2565b612c93565b600060155414611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c24906154a3565b60405180910390fd5b4360148190555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601660029054906101000a900467ffffffffffffffff1681565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054611cf590615ad5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2190615ad5565b8015611d6e5780601f10611d4357610100808354040283529160200191611d6e565b820191906000526020600020905b815481529060010190602001808311611d5157829003601f168201915b5050505050905090565b601660009054906101000a900460ff16611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90615723565b60405180910390fd5b601254601154601054611dd8610f15565b611de29190615995565b611dec9190615995565b611df69190615995565b61238c61ffff1611611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490615403565b60405180910390fd5b600081118015611e6157506016600a9054906101000a900461ffff1661ffff168111155b611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790615543565b60405180910390fd5b611ea8612240565b811115611eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee1906156a3565b60405180910390fd5b60125460115460105483611efc610f15565b611f0691906158b4565b611f109190615995565b611f1a9190615995565b611f249190615995565b61238c61ffff161015611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f63906154c3565b60405180910390fd5b80611f75610f35565b611f7f919061593b565b341015611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb8906156e3565b60405180910390fd5b60005b818110156120025760006001611fd8610f15565b611fe291906158b4565b9050611fee338261322d565b508080611ffa90615b07565b915050611fc4565b506000601454148015612021575061238c61ffff1661201f610f15565b145b1561202e57436014819055505b50565b6000801b81565b612040612bd2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590615443565b60405180910390fd5b80600560006120bb612bd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612168612bd2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121ad919061530b565b60405180910390a35050565b60115481565b60105481565b601660019054906101000a900460ff1681565b600f5481565b6121ef6121e9612bd2565b83612d30565b61222e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222590615683565b60405180910390fd5b61223a84848484613311565b50505050565b60008061224b610f15565b601660029054906101000a900467ffffffffffffffff1667ffffffffffffffff166122769190615995565b90508091505090565b606061228a8261336d565b9050919050565b601660019054906101000a900460ff166122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d790615723565b60405180910390fd5b6000600f5411612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90615703565b60405180910390fd5b8061232e610f35565b612338919061593b565b34101561237a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612371906156e3565b60405180910390fd5b600081600f5461238a9190615995565b10156123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c290615483565b60405180910390fd5b6123d3612240565b811115612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c906156a3565b60405180910390fd5b60005b81811015612456576000600161242c610f15565b61243691906158b4565b9050612442338261322d565b50808061244e90615b07565b915050612418565b506000601454148015612475575061238c61ffff16612473610f15565b145b1561248257436014819055505b80600f546124909190615995565b600f81905550806012546124a491906158b4565b60128190555050565b60155481565b6124bc82611015565b6124cd816124c8612bd2565b612c93565b6124d7838361314b565b505050565b60145481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601554146125bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b2906154a3565b60405180910390fd5b60006014541415612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f890615663565b60405180910390fd5b61238c61ffff166014544060001c6126199190615b50565b60158190555060ff6014544361262f9190615995565b111561265e5761238c61ffff166001436126499190615995565b4060001c6126579190615b50565b6015819055505b6000601554141561267f57600160155461267891906158b4565b6015819055505b565b6016600a9054906101000a900461ffff1681565b61269d612bd2565b73ffffffffffffffffffffffffffffffffffffffff166126bb611c37565b73ffffffffffffffffffffffffffffffffffffffff1614612711576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612708906155e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612778906153c3565b60405180910390fd5b61278a8161324b565b50565b7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f6127bf816127ba612bd2565b612c93565b601660019054906101000a900460ff1615601660016101000a81548160ff02191690831515021790555050565b600d5481565b606060006002836002612805919061593b565b61280f91906158b4565b67ffffffffffffffff81111561284e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128805781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106128de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612968577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026129a8919061593b565b6129b291906158b4565b90505b6001811115612a9e577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612a57577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612a9790615aab565b90506129b5565b5060008414612ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad990615363565b60405180910390fd5b8091505092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b5f5750612b5e82613414565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c4d8361187a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612c9d8282611c7b565b612d2c57612cc28173ffffffffffffffffffffffffffffffffffffffff1660146127f2565b612cd08360001c60206127f2565b604051602001612ce192919061526a565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d239190615341565b60405180910390fd5b5050565b6000612d3b82612b66565b612d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7190615463565b60405180910390fd5b6000612d858361187a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612df457508373ffffffffffffffffffffffffffffffffffffffff16612ddc84610d2b565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e055750612e0481856124e2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e2e8261187a565b73ffffffffffffffffffffffffffffffffffffffff1614612e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7b90615603565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eeb90615423565b60405180910390fd5b612eff83838361348e565b612f0a600082612bda565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f5a9190615995565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fb191906158b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6130748282611c7b565b613147576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506130ec612bd2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6131558282611c7b565b15613229576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506131ce612bd2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61324782826040518060200160405280600081525061349e565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61331c848484612e0e565b613328848484846134f9565b613367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335e906153a3565b60405180910390fd5b50505050565b606061337882612b66565b6133b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ae90615623565b60405180910390fd5b60006133c1613690565b905060008151116133e1576040518060200160405280600081525061340c565b806133eb84613722565b6040516020016133fc929190615246565b6040516020818303038152906040525b915050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806134875750613486826138cf565b5b9050919050565b6134998383836139b1565b505050565b6134a88383613ac5565b6134b560008484846134f9565b6134f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134eb906153a3565b60405180910390fd5b505050565b600061351a8473ffffffffffffffffffffffffffffffffffffffff16613c93565b15613683578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613543612bd2565b8786866040518563ffffffff1660e01b815260040161356594939291906152bf565b602060405180830381600087803b15801561357f57600080fd5b505af19250505080156135b057506040513d601f19601f820116820180604052508101906135ad919061458a565b60015b613633573d80600081146135e0576040519150601f19603f3d011682016040523d82523d6000602084013e6135e5565b606091505b5060008151141561362b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613622906153a3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613688565b600190505b949350505050565b60606013805461369f90615ad5565b80601f01602080910402602001604051908101604052809291908181526020018280546136cb90615ad5565b80156137185780601f106136ed57610100808354040283529160200191613718565b820191906000526020600020905b8154815290600101906020018083116136fb57829003601f168201915b5050505050905090565b6060600082141561376a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138ca565b600082905060005b6000821461379c57808061378590615b07565b915050600a82613795919061590a565b9150613772565b60008167ffffffffffffffff8111156137de577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156138105781602001600182028036833780820191505090505b5090505b600085146138c3576001826138299190615995565b9150600a856138389190615b50565b603061384491906158b4565b60f81b818381518110613880577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138bc919061590a565b9450613814565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061399a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806139aa57506139a982613ca6565b5b9050919050565b6139bc838383613d10565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139ff576139fa81613d15565b613a3e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613a3d57613a3c8382613d5e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a8157613a7c81613ecb565b613ac0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613abf57613abe828261400e565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b2c90615563565b60405180910390fd5b613b3e81612b66565b15613b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b75906153e3565b60405180910390fd5b613b8a6000838361348e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bda91906158b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613d6b8461192c565b613d759190615995565b9050600060076000848152602001908152602001600020549050818114613e5a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613edf9190615995565b9050600060096000848152602001908152602001600020549050600060088381548110613f35577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613f7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613ff2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006140198361192c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461409990615ad5565b90600052602060002090601f0160209004810192826140bb5760008555614102565b82601f106140d457805160ff1916838001178555614102565b82800160010185558215614102579182015b828111156141015782518255916020019190600101906140e6565b5b50905061410f9190614113565b5090565b5b8082111561412c576000816000905550600101614114565b5090565b600061414361413e846157e5565b6157b4565b9050808382526020820190508285602086028201111561416257600080fd5b60005b8581101561419257816141788882614218565b845260208401935060208301925050600181019050614165565b5050509392505050565b60006141af6141aa84615811565b6157b4565b9050828152602081018484840111156141c757600080fd5b6141d2848285615a69565b509392505050565b60006141ed6141e884615841565b6157b4565b90508281526020810184848401111561420557600080fd5b614210848285615a69565b509392505050565b60008135905061422781615c4e565b92915050565b600082601f83011261423e57600080fd5b813561424e848260208601614130565b91505092915050565b60008135905061426681615c65565b92915050565b60008135905061427b81615c7c565b92915050565b60008135905061429081615c93565b92915050565b6000815190506142a581615c93565b92915050565b600082601f8301126142bc57600080fd5b81356142cc84826020860161419c565b91505092915050565b600082601f8301126142e657600080fd5b81356142f68482602086016141da565b91505092915050565b60008135905061430e81615caa565b92915050565b60006020828403121561432657600080fd5b600061433484828501614218565b91505092915050565b6000806040838503121561435057600080fd5b600061435e85828601614218565b925050602061436f85828601614218565b9150509250929050565b60008060006060848603121561438e57600080fd5b600061439c86828701614218565b93505060206143ad86828701614218565b92505060406143be868287016142ff565b9150509250925092565b600080600080608085870312156143de57600080fd5b60006143ec87828801614218565b94505060206143fd87828801614218565b935050604061440e878288016142ff565b925050606085013567ffffffffffffffff81111561442b57600080fd5b614437878288016142ab565b91505092959194509250565b6000806040838503121561445657600080fd5b600061446485828601614218565b925050602061447585828601614257565b9150509250929050565b6000806040838503121561449257600080fd5b60006144a085828601614218565b92505060206144b1858286016142ff565b9150509250929050565b6000602082840312156144cd57600080fd5b600082013567ffffffffffffffff8111156144e757600080fd5b6144f38482850161422d565b91505092915050565b60006020828403121561450e57600080fd5b600061451c8482850161426c565b91505092915050565b6000806040838503121561453857600080fd5b60006145468582860161426c565b925050602061455785828601614218565b9150509250929050565b60006020828403121561457357600080fd5b600061458184828501614281565b91505092915050565b60006020828403121561459c57600080fd5b60006145aa84828501614296565b91505092915050565b6000602082840312156145c557600080fd5b600082013567ffffffffffffffff8111156145df57600080fd5b6145eb848285016142d5565b91505092915050565b60006020828403121561460657600080fd5b6000614614848285016142ff565b91505092915050565b614626816159c9565b82525050565b614635816159db565b82525050565b614644816159e7565b82525050565b600061465582615871565b61465f8185615887565b935061466f818560208601615a78565b61467881615c3d565b840191505092915050565b600061468e8261587c565b6146988185615898565b93506146a8818560208601615a78565b6146b181615c3d565b840191505092915050565b60006146c78261587c565b6146d181856158a9565b93506146e1818560208601615a78565b80840191505092915050565b60006146fa602083615898565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b600061473a602b83615898565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006147a0603283615898565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614806602683615898565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061486c601c83615898565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006148ac600e83615898565b91507f53616c652068617320656e6465640000000000000000000000000000000000006000830152602082019050919050565b60006148ec602483615898565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614952601983615898565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614992602c83615898565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006149f8602983615898565b91507f45786365656473207072657361696c6520737570706c792c206d696e7420666560008301527f776572204e4654277300000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a5e601d83615898565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b6000614a9e601583615898565b91507f457863656564732072657461696c20737570706c7900000000000000000000006000830152602082019050919050565b6000614ade603883615898565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614b44602a83615898565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614baa602983615898565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c10601983615898565b91507f45786365656473204d41585f4d494e545f5045525f43414c4c000000000000006000830152602082019050919050565b6000614c50602083615898565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614c90603583615898565b91507f4e6f7420656e6f75676820696e207468652064657620726573657276652c206d60008301527f696e74206120736d616c6c657220616d6d6f756e7400000000000000000000006020830152604082019050919050565b6000614cf6601883615898565b91507f5374616b6572207265736572766520697320656d7074792100000000000000006000830152602082019050919050565b6000614d36602c83615898565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614d9c602083615898565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614ddc602983615898565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e42602f83615898565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614ea8602183615898565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f0e602083615898565b91507f5374617274696e6720696e64657820626c6f636b206d757374206265207365746000830152602082019050919050565b6000614f4e603183615898565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614fb4602b83615898565b91507f4e756d626572206f66204e46547320776f756c6420657863656564207468652060008301527f70726963652072616e67650000000000000000000000000000000000000000006020830152604082019050919050565b600061501a602c83615898565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000615080601583615898565b91507f496e636f72726563742065746865722076616c756500000000000000000000006000830152602082019050919050565b60006150c0601a83615898565b91507f50726573616c6520737570706c79206973206465706c657465640000000000006000830152602082019050919050565b60006151006017836158a9565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000615140601483615898565b91507f53616c6520686173206e6f7420737461727465640000000000000000000000006000830152602082019050919050565b60006151806011836158a9565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60006151c0602f83615898565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b61522281615a1d565b82525050565b61523181615a4b565b82525050565b61524081615a55565b82525050565b600061525282856146bc565b915061525e82846146bc565b91508190509392505050565b6000615275826150f3565b915061528182856146bc565b915061528c82615173565b915061529882846146bc565b91508190509392505050565b60006020820190506152b9600083018461461d565b92915050565b60006080820190506152d4600083018761461d565b6152e1602083018661461d565b6152ee6040830185615228565b8181036060830152615300818461464a565b905095945050505050565b6000602082019050615320600083018461462c565b92915050565b600060208201905061533b600083018461463b565b92915050565b6000602082019050818103600083015261535b8184614683565b905092915050565b6000602082019050818103600083015261537c816146ed565b9050919050565b6000602082019050818103600083015261539c8161472d565b9050919050565b600060208201905081810360008301526153bc81614793565b9050919050565b600060208201905081810360008301526153dc816147f9565b9050919050565b600060208201905081810360008301526153fc8161485f565b9050919050565b6000602082019050818103600083015261541c8161489f565b9050919050565b6000602082019050818103600083015261543c816148df565b9050919050565b6000602082019050818103600083015261545c81614945565b9050919050565b6000602082019050818103600083015261547c81614985565b9050919050565b6000602082019050818103600083015261549c816149eb565b9050919050565b600060208201905081810360008301526154bc81614a51565b9050919050565b600060208201905081810360008301526154dc81614a91565b9050919050565b600060208201905081810360008301526154fc81614ad1565b9050919050565b6000602082019050818103600083015261551c81614b37565b9050919050565b6000602082019050818103600083015261553c81614b9d565b9050919050565b6000602082019050818103600083015261555c81614c03565b9050919050565b6000602082019050818103600083015261557c81614c43565b9050919050565b6000602082019050818103600083015261559c81614c83565b9050919050565b600060208201905081810360008301526155bc81614ce9565b9050919050565b600060208201905081810360008301526155dc81614d29565b9050919050565b600060208201905081810360008301526155fc81614d8f565b9050919050565b6000602082019050818103600083015261561c81614dcf565b9050919050565b6000602082019050818103600083015261563c81614e35565b9050919050565b6000602082019050818103600083015261565c81614e9b565b9050919050565b6000602082019050818103600083015261567c81614f01565b9050919050565b6000602082019050818103600083015261569c81614f41565b9050919050565b600060208201905081810360008301526156bc81614fa7565b9050919050565b600060208201905081810360008301526156dc8161500d565b9050919050565b600060208201905081810360008301526156fc81615073565b9050919050565b6000602082019050818103600083015261571c816150b3565b9050919050565b6000602082019050818103600083015261573c81615133565b9050919050565b6000602082019050818103600083015261575c816151b3565b9050919050565b60006020820190506157786000830184615219565b92915050565b60006020820190506157936000830184615228565b92915050565b60006020820190506157ae6000830184615237565b92915050565b6000604051905081810181811067ffffffffffffffff821117156157db576157da615c0e565b5b8060405250919050565b600067ffffffffffffffff821115615800576157ff615c0e565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561582c5761582b615c0e565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561585c5761585b615c0e565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006158bf82615a4b565b91506158ca83615a4b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156158ff576158fe615b81565b5b828201905092915050565b600061591582615a4b565b915061592083615a4b565b9250826159305761592f615bb0565b5b828204905092915050565b600061594682615a4b565b915061595183615a4b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561598a57615989615b81565b5b828202905092915050565b60006159a082615a4b565b91506159ab83615a4b565b9250828210156159be576159bd615b81565b5b828203905092915050565b60006159d482615a2b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015615a96578082015181840152602081019050615a7b565b83811115615aa5576000848401525b50505050565b6000615ab682615a4b565b91506000821415615aca57615ac9615b81565b5b600182039050919050565b60006002820490506001821680615aed57607f821691505b60208210811415615b0157615b00615bdf565b5b50919050565b6000615b1282615a4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615b4557615b44615b81565b5b600182019050919050565b6000615b5b82615a4b565b9150615b6683615a4b565b925082615b7657615b75615bb0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615c57816159c9565b8114615c6257600080fd5b50565b615c6e816159db565b8114615c7957600080fd5b50565b615c85816159e7565b8114615c9057600080fd5b50565b615c9c816159f1565b8114615ca757600080fd5b50565b615cb381615a4b565b8114615cbe57600080fd5b5056fea2646970667358221220478630f74b01e5ff8677be1a50d8538179be9116c3ba7e6475df50948ab7623964736f6c63430008000033

Deployed Bytecode

0x6080604052600436106103505760003560e01c806373aee929116101c6578063b3a196e9116100f7578063e36d649811610095578063ed4956421161006f578063ed49564214610bf1578063f2fde38b14610c1c578063f81227d414610c45578063fcd2a42714610c5c57610350565b8063e36d649814610b72578063e985e9c514610b9d578063e986655014610bda57610350565b8063c87b56dd116100d1578063c87b56dd14610ac5578063c9b298f114610b02578063cb774d4714610b1e578063d547741f14610b4957610350565b8063b3a196e914610a46578063b88d4fde14610a71578063bea9d36914610a9a57610350565b806395d89b4111610164578063a22cb4651161013e578063a22cb4651461099c578063a8c02a41146109c5578063adf2131b146109f0578063b022001514610a1b57610350565b806395d89b411461092a578063a0712d6814610955578063a217fddf1461097157610350565b80637d17fcbe116101a05780637d17fcbe146108805780638da5cb5b146108975780638deb1b3d146108c257806391d14854146108ed57610350565b806373aee929146107ff578063797669c91461082a5780637aec9b0b1461085557610350565b80633325d3f6116102a05780634f6ccce71161023e5780636352211e116102185780636352211e1461074357806370a0823114610780578063714c5398146107bd578063715018a6146107e857610350565b80634f6ccce7146106c157806355f804b3146106fe5780635ab04aa61461072757610350565b8063375a069a1161027a578063375a069a1461062d5780633780b3ed146106565780633ccfd60b1461068157806342842e0e1461069857610350565b80633325d3f6146105c457806334918dfd146105ed57806336568abe1461060457610350565b80631c8b232d1161030d57806324101777116102e757806324101777146104f6578063248a9ca3146105215780632f2ff15d1461055e5780632f745c591461058757610350565b80631c8b232d146104775780631eed3218146104a257806323b872dd146104cd57610350565b806301ffc9a71461035557806306fdde0314610392578063081812fc146103bd578063095ea7b3146103fa578063109695231461042357806318160ddd1461044c575b600080fd5b34801561036157600080fd5b5061037c60048036038101906103779190614561565b610c87565b604051610389919061530b565b60405180910390f35b34801561039e57600080fd5b506103a7610c99565b6040516103b49190615341565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df91906145f4565b610d2b565b6040516103f191906152a4565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c919061447f565b610db0565b005b34801561042f57600080fd5b5061044a600480360381019061044591906145b3565b610ec8565b005b34801561045857600080fd5b50610461610f15565b60405161046e919061577e565b60405180910390f35b34801561048357600080fd5b5061048c610f22565b604051610499919061530b565b60405180910390f35b3480156104ae57600080fd5b506104b7610f35565b6040516104c4919061577e565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190614379565b610faf565b005b34801561050257600080fd5b5061050b61100f565b604051610518919061577e565b60405180910390f35b34801561052d57600080fd5b50610548600480360381019061054391906144fc565b611015565b6040516105559190615326565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190614525565b611035565b005b34801561059357600080fd5b506105ae60048036038101906105a9919061447f565b61105e565b6040516105bb919061577e565b60405180910390f35b3480156105d057600080fd5b506105eb60048036038101906105e691906144bb565b611103565b005b3480156105f957600080fd5b506106026111c3565b005b34801561061057600080fd5b5061062b60048036038101906106269190614525565b611222565b005b34801561063957600080fd5b50610654600480360381019061064f91906145f4565b6112a5565b005b34801561066257600080fd5b5061066b6113fe565b6040516106789190615326565b60405180910390f35b34801561068d57600080fd5b50610696611422565b005b3480156106a457600080fd5b506106bf60048036038101906106ba9190614379565b6114de565b005b3480156106cd57600080fd5b506106e860048036038101906106e391906145f4565b6114fe565b6040516106f5919061577e565b60405180910390f35b34801561070a57600080fd5b50610725600480360381019061072091906145b3565b611595565b005b610741600480360381019061073c91906145f4565b61162b565b005b34801561074f57600080fd5b5061076a600480360381019061076591906145f4565b61187a565b60405161077791906152a4565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190614314565b61192c565b6040516107b4919061577e565b60405180910390f35b3480156107c957600080fd5b506107d26119e4565b6040516107df9190615341565b60405180910390f35b3480156107f457600080fd5b506107fd611a76565b005b34801561080b57600080fd5b50610814611afe565b604051610821919061577e565b60405180910390f35b34801561083657600080fd5b5061083f611b04565b60405161084c9190615326565b60405180910390f35b34801561086157600080fd5b5061086a611b28565b6040516108779190615341565b60405180910390f35b34801561088c57600080fd5b50610895611bb6565b005b3480156108a357600080fd5b506108ac611c37565b6040516108b991906152a4565b60405180910390f35b3480156108ce57600080fd5b506108d7611c61565b6040516108e49190615799565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f9190614525565b611c7b565b604051610921919061530b565b60405180910390f35b34801561093657600080fd5b5061093f611ce6565b60405161094c9190615341565b60405180910390f35b61096f600480360381019061096a91906145f4565b611d78565b005b34801561097d57600080fd5b50610986612031565b6040516109939190615326565b60405180910390f35b3480156109a857600080fd5b506109c360048036038101906109be9190614443565b612038565b005b3480156109d157600080fd5b506109da6121b9565b6040516109e7919061577e565b60405180910390f35b3480156109fc57600080fd5b50610a056121bf565b604051610a12919061577e565b60405180910390f35b348015610a2757600080fd5b50610a306121c5565b604051610a3d919061530b565b60405180910390f35b348015610a5257600080fd5b50610a5b6121d8565b604051610a68919061577e565b60405180910390f35b348015610a7d57600080fd5b50610a986004803603810190610a9391906143c8565b6121de565b005b348015610aa657600080fd5b50610aaf612240565b604051610abc919061577e565b60405180910390f35b348015610ad157600080fd5b50610aec6004803603810190610ae791906145f4565b61227f565b604051610af99190615341565b60405180910390f35b610b1c6004803603810190610b1791906145f4565b612291565b005b348015610b2a57600080fd5b50610b336124ad565b604051610b40919061577e565b60405180910390f35b348015610b5557600080fd5b50610b706004803603810190610b6b9190614525565b6124b3565b005b348015610b7e57600080fd5b50610b876124dc565b604051610b94919061577e565b60405180910390f35b348015610ba957600080fd5b50610bc46004803603810190610bbf919061433d565b6124e2565b604051610bd1919061530b565b60405180910390f35b348015610be657600080fd5b50610bef612576565b005b348015610bfd57600080fd5b50610c06612681565b604051610c139190615763565b60405180910390f35b348015610c2857600080fd5b50610c436004803603810190610c3e9190614314565b612695565b005b348015610c5157600080fd5b50610c5a61278d565b005b348015610c6857600080fd5b50610c716127ec565b604051610c7e919061577e565b60405180910390f35b6000610c9282612aec565b9050919050565b606060008054610ca890615ad5565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd490615ad5565b8015610d215780601f10610cf657610100808354040283529160200191610d21565b820191906000526020600020905b815481529060010190602001808311610d0457829003601f168201915b5050505050905090565b6000610d3682612b66565b610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c906155c3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dbb8261187a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2390615643565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e4b612bd2565b73ffffffffffffffffffffffffffffffffffffffff161480610e7a5750610e7981610e74612bd2565b6124e2565b5b610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb0906154e3565b60405180910390fd5b610ec38383612bda565b505050565b7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f610efa81610ef5612bd2565b612c93565b81600c9080519060200190610f1092919061408d565b505050565b6000600880549050905090565b601660009054906101000a900460ff1681565b600080610f40610f15565b905060008110158015610f5457506101f581105b15610f6957667c585087238000915050610fac565b6101f58110158015610f7c575061138881105b15610f915766e6ed27d6668000915050610fac565b6113898110610faa5766f8b0a10e470000915050610fac565b505b90565b610fc0610fba612bd2565b82612d30565b610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690615683565b60405180910390fd5b61100a838383612e0e565b505050565b600e5481565b6000600a6000838152602001908152602001600020600101549050919050565b61103e82611015565b61104f8161104a612bd2565b612c93565b611059838361306a565b505050565b60006110698361192c565b82106110aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a190615383565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f61113581611130612bd2565b612c93565b60005b82518110156111be576111ab7fb9e206fa2af7ee1331b72ce58b6d938ac810ce9b5cdb65d35ab723fd67badf9e84838151811061119e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611035565b80806111b690615b07565b915050611138565b505050565b7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f6111f5816111f0612bd2565b612c93565b601660009054906101000a900460ff1615601660006101000a81548160ff02191690831515021790555050565b61122a612bd2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611297576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128e90615743565b60405180910390fd5b6112a1828261314b565b5050565b6112ad612bd2565b73ffffffffffffffffffffffffffffffffffffffff166112cb611c37565b73ffffffffffffffffffffffffffffffffffffffff1614611321576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611318906155e3565b60405180910390fd5b600d54811115611366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135d90615583565b60405180910390fd5b60005b818110156113a7576000600161137d610f15565b61138791906158b4565b9050611393338261322d565b50808061139f90615b07565b915050611369565b5080600d546113b69190615995565b600d81905550806010546113ca91906158b4565b60108190555060006014541480156113ee575061238c61ffff166113ec610f15565b145b156113fb57436014819055505b50565b7fb9e206fa2af7ee1331b72ce58b6d938ac810ce9b5cdb65d35ab723fd67badf9e81565b61142a612bd2565b73ffffffffffffffffffffffffffffffffffffffff16611448611c37565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611495906155e3565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050506114dc57600080fd5b565b6114f9838383604051806020016040528060008152506121de565b505050565b6000611508610f15565b8210611549576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611540906156c3565b60405180910390fd5b60088281548110611583577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61159d612bd2565b73ffffffffffffffffffffffffffffffffffffffff166115bb611c37565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611608906155e3565b60405180910390fd5b806013908051906020019061162792919061408d565b5050565b7fb9e206fa2af7ee1331b72ce58b6d938ac810ce9b5cdb65d35ab723fd67badf9e61165d81611658612bd2565b612c93565b601660009054906101000a900460ff166116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a390615723565b60405180910390fd5b6000600e54116116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e8906155a3565b60405180910390fd5b816116fa610f35565b611704919061593b565b341015611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d906156e3565b60405180910390fd5b600082600e546117569190615995565b1015611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e906154c3565b60405180910390fd5b61179f612240565b8211156117e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d8906156a3565b60405180910390fd5b60005b8281101561182257600060016117f8610f15565b61180291906158b4565b905061180e338261322d565b50808061181a90615b07565b9150506117e4565b506000601454148015611841575061238c61ffff1661183f610f15565b145b1561184e57436014819055505b81600e5461185c9190615995565b600e819055508160115461187091906158b4565b6011819055505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191a90615523565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199490615503565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060601380546119f390615ad5565b80601f0160208091040260200160405190810160405280929190818152602001828054611a1f90615ad5565b8015611a6c5780601f10611a4157610100808354040283529160200191611a6c565b820191906000526020600020905b815481529060010190602001808311611a4f57829003601f168201915b5050505050905090565b611a7e612bd2565b73ffffffffffffffffffffffffffffffffffffffff16611a9c611c37565b73ffffffffffffffffffffffffffffffffffffffff1614611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae9906155e3565b60405180910390fd5b611afc600061324b565b565b60125481565b7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f81565b600c8054611b3590615ad5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6190615ad5565b8015611bae5780601f10611b8357610100808354040283529160200191611bae565b820191906000526020600020905b815481529060010190602001808311611b9157829003601f168201915b505050505081565b7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f611be881611be3612bd2565b612c93565b600060155414611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c24906154a3565b60405180910390fd5b4360148190555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601660029054906101000a900467ffffffffffffffff1681565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054611cf590615ad5565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2190615ad5565b8015611d6e5780601f10611d4357610100808354040283529160200191611d6e565b820191906000526020600020905b815481529060010190602001808311611d5157829003601f168201915b5050505050905090565b601660009054906101000a900460ff16611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90615723565b60405180910390fd5b601254601154601054611dd8610f15565b611de29190615995565b611dec9190615995565b611df69190615995565b61238c61ffff1611611e3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3490615403565b60405180910390fd5b600081118015611e6157506016600a9054906101000a900461ffff1661ffff168111155b611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790615543565b60405180910390fd5b611ea8612240565b811115611eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee1906156a3565b60405180910390fd5b60125460115460105483611efc610f15565b611f0691906158b4565b611f109190615995565b611f1a9190615995565b611f249190615995565b61238c61ffff161015611f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f63906154c3565b60405180910390fd5b80611f75610f35565b611f7f919061593b565b341015611fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb8906156e3565b60405180910390fd5b60005b818110156120025760006001611fd8610f15565b611fe291906158b4565b9050611fee338261322d565b508080611ffa90615b07565b915050611fc4565b506000601454148015612021575061238c61ffff1661201f610f15565b145b1561202e57436014819055505b50565b6000801b81565b612040612bd2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a590615443565b60405180910390fd5b80600560006120bb612bd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612168612bd2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516121ad919061530b565b60405180910390a35050565b60115481565b60105481565b601660019054906101000a900460ff1681565b600f5481565b6121ef6121e9612bd2565b83612d30565b61222e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222590615683565b60405180910390fd5b61223a84848484613311565b50505050565b60008061224b610f15565b601660029054906101000a900467ffffffffffffffff1667ffffffffffffffff166122769190615995565b90508091505090565b606061228a8261336d565b9050919050565b601660019054906101000a900460ff166122e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d790615723565b60405180910390fd5b6000600f5411612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c90615703565b60405180910390fd5b8061232e610f35565b612338919061593b565b34101561237a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612371906156e3565b60405180910390fd5b600081600f5461238a9190615995565b10156123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c290615483565b60405180910390fd5b6123d3612240565b811115612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c906156a3565b60405180910390fd5b60005b81811015612456576000600161242c610f15565b61243691906158b4565b9050612442338261322d565b50808061244e90615b07565b915050612418565b506000601454148015612475575061238c61ffff16612473610f15565b145b1561248257436014819055505b80600f546124909190615995565b600f81905550806012546124a491906158b4565b60128190555050565b60155481565b6124bc82611015565b6124cd816124c8612bd2565b612c93565b6124d7838361314b565b505050565b60145481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601554146125bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b2906154a3565b60405180910390fd5b60006014541415612601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f890615663565b60405180910390fd5b61238c61ffff166014544060001c6126199190615b50565b60158190555060ff6014544361262f9190615995565b111561265e5761238c61ffff166001436126499190615995565b4060001c6126579190615b50565b6015819055505b6000601554141561267f57600160155461267891906158b4565b6015819055505b565b6016600a9054906101000a900461ffff1681565b61269d612bd2565b73ffffffffffffffffffffffffffffffffffffffff166126bb611c37565b73ffffffffffffffffffffffffffffffffffffffff1614612711576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612708906155e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612778906153c3565b60405180910390fd5b61278a8161324b565b50565b7f71f3d55856e4058ed06ee057d79ada615f65cdf5f9ee88181b914225088f834f6127bf816127ba612bd2565b612c93565b601660019054906101000a900460ff1615601660016101000a81548160ff02191690831515021790555050565b600d5481565b606060006002836002612805919061593b565b61280f91906158b4565b67ffffffffffffffff81111561284e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128805781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106128de577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612968577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026129a8919061593b565b6129b291906158b4565b90505b6001811115612a9e577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612a57577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612a9790615aab565b90506129b5565b5060008414612ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad990615363565b60405180910390fd5b8091505092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612b5f5750612b5e82613414565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c4d8361187a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612c9d8282611c7b565b612d2c57612cc28173ffffffffffffffffffffffffffffffffffffffff1660146127f2565b612cd08360001c60206127f2565b604051602001612ce192919061526a565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d239190615341565b60405180910390fd5b5050565b6000612d3b82612b66565b612d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7190615463565b60405180910390fd5b6000612d858361187a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612df457508373ffffffffffffffffffffffffffffffffffffffff16612ddc84610d2b565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e055750612e0481856124e2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612e2e8261187a565b73ffffffffffffffffffffffffffffffffffffffff1614612e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7b90615603565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eeb90615423565b60405180910390fd5b612eff83838361348e565b612f0a600082612bda565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f5a9190615995565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fb191906158b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6130748282611c7b565b613147576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506130ec612bd2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6131558282611c7b565b15613229576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506131ce612bd2565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61324782826040518060200160405280600081525061349e565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61331c848484612e0e565b613328848484846134f9565b613367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335e906153a3565b60405180910390fd5b50505050565b606061337882612b66565b6133b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ae90615623565b60405180910390fd5b60006133c1613690565b905060008151116133e1576040518060200160405280600081525061340c565b806133eb84613722565b6040516020016133fc929190615246565b6040516020818303038152906040525b915050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806134875750613486826138cf565b5b9050919050565b6134998383836139b1565b505050565b6134a88383613ac5565b6134b560008484846134f9565b6134f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134eb906153a3565b60405180910390fd5b505050565b600061351a8473ffffffffffffffffffffffffffffffffffffffff16613c93565b15613683578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613543612bd2565b8786866040518563ffffffff1660e01b815260040161356594939291906152bf565b602060405180830381600087803b15801561357f57600080fd5b505af19250505080156135b057506040513d601f19601f820116820180604052508101906135ad919061458a565b60015b613633573d80600081146135e0576040519150601f19603f3d011682016040523d82523d6000602084013e6135e5565b606091505b5060008151141561362b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613622906153a3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613688565b600190505b949350505050565b60606013805461369f90615ad5565b80601f01602080910402602001604051908101604052809291908181526020018280546136cb90615ad5565b80156137185780601f106136ed57610100808354040283529160200191613718565b820191906000526020600020905b8154815290600101906020018083116136fb57829003601f168201915b5050505050905090565b6060600082141561376a576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506138ca565b600082905060005b6000821461379c57808061378590615b07565b915050600a82613795919061590a565b9150613772565b60008167ffffffffffffffff8111156137de577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156138105781602001600182028036833780820191505090505b5090505b600085146138c3576001826138299190615995565b9150600a856138389190615b50565b603061384491906158b4565b60f81b818381518110613880577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138bc919061590a565b9450613814565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061399a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806139aa57506139a982613ca6565b5b9050919050565b6139bc838383613d10565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156139ff576139fa81613d15565b613a3e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613a3d57613a3c8382613d5e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a8157613a7c81613ecb565b613ac0565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613abf57613abe828261400e565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b2c90615563565b60405180910390fd5b613b3e81612b66565b15613b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b75906153e3565b60405180910390fd5b613b8a6000838361348e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bda91906158b4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613d6b8461192c565b613d759190615995565b9050600060076000848152602001908152602001600020549050818114613e5a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613edf9190615995565b9050600060096000848152602001908152602001600020549050600060088381548110613f35577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613f7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613ff2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006140198361192c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461409990615ad5565b90600052602060002090601f0160209004810192826140bb5760008555614102565b82601f106140d457805160ff1916838001178555614102565b82800160010185558215614102579182015b828111156141015782518255916020019190600101906140e6565b5b50905061410f9190614113565b5090565b5b8082111561412c576000816000905550600101614114565b5090565b600061414361413e846157e5565b6157b4565b9050808382526020820190508285602086028201111561416257600080fd5b60005b8581101561419257816141788882614218565b845260208401935060208301925050600181019050614165565b5050509392505050565b60006141af6141aa84615811565b6157b4565b9050828152602081018484840111156141c757600080fd5b6141d2848285615a69565b509392505050565b60006141ed6141e884615841565b6157b4565b90508281526020810184848401111561420557600080fd5b614210848285615a69565b509392505050565b60008135905061422781615c4e565b92915050565b600082601f83011261423e57600080fd5b813561424e848260208601614130565b91505092915050565b60008135905061426681615c65565b92915050565b60008135905061427b81615c7c565b92915050565b60008135905061429081615c93565b92915050565b6000815190506142a581615c93565b92915050565b600082601f8301126142bc57600080fd5b81356142cc84826020860161419c565b91505092915050565b600082601f8301126142e657600080fd5b81356142f68482602086016141da565b91505092915050565b60008135905061430e81615caa565b92915050565b60006020828403121561432657600080fd5b600061433484828501614218565b91505092915050565b6000806040838503121561435057600080fd5b600061435e85828601614218565b925050602061436f85828601614218565b9150509250929050565b60008060006060848603121561438e57600080fd5b600061439c86828701614218565b93505060206143ad86828701614218565b92505060406143be868287016142ff565b9150509250925092565b600080600080608085870312156143de57600080fd5b60006143ec87828801614218565b94505060206143fd87828801614218565b935050604061440e878288016142ff565b925050606085013567ffffffffffffffff81111561442b57600080fd5b614437878288016142ab565b91505092959194509250565b6000806040838503121561445657600080fd5b600061446485828601614218565b925050602061447585828601614257565b9150509250929050565b6000806040838503121561449257600080fd5b60006144a085828601614218565b92505060206144b1858286016142ff565b9150509250929050565b6000602082840312156144cd57600080fd5b600082013567ffffffffffffffff8111156144e757600080fd5b6144f38482850161422d565b91505092915050565b60006020828403121561450e57600080fd5b600061451c8482850161426c565b91505092915050565b6000806040838503121561453857600080fd5b60006145468582860161426c565b925050602061455785828601614218565b9150509250929050565b60006020828403121561457357600080fd5b600061458184828501614281565b91505092915050565b60006020828403121561459c57600080fd5b60006145aa84828501614296565b91505092915050565b6000602082840312156145c557600080fd5b600082013567ffffffffffffffff8111156145df57600080fd5b6145eb848285016142d5565b91505092915050565b60006020828403121561460657600080fd5b6000614614848285016142ff565b91505092915050565b614626816159c9565b82525050565b614635816159db565b82525050565b614644816159e7565b82525050565b600061465582615871565b61465f8185615887565b935061466f818560208601615a78565b61467881615c3d565b840191505092915050565b600061468e8261587c565b6146988185615898565b93506146a8818560208601615a78565b6146b181615c3d565b840191505092915050565b60006146c78261587c565b6146d181856158a9565b93506146e1818560208601615a78565b80840191505092915050565b60006146fa602083615898565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b600061473a602b83615898565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006147a0603283615898565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614806602683615898565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061486c601c83615898565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006148ac600e83615898565b91507f53616c652068617320656e6465640000000000000000000000000000000000006000830152602082019050919050565b60006148ec602483615898565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614952601983615898565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614992602c83615898565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006149f8602983615898565b91507f45786365656473207072657361696c6520737570706c792c206d696e7420666560008301527f776572204e4654277300000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a5e601d83615898565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b6000614a9e601583615898565b91507f457863656564732072657461696c20737570706c7900000000000000000000006000830152602082019050919050565b6000614ade603883615898565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614b44602a83615898565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614baa602983615898565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c10601983615898565b91507f45786365656473204d41585f4d494e545f5045525f43414c4c000000000000006000830152602082019050919050565b6000614c50602083615898565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614c90603583615898565b91507f4e6f7420656e6f75676820696e207468652064657620726573657276652c206d60008301527f696e74206120736d616c6c657220616d6d6f756e7400000000000000000000006020830152604082019050919050565b6000614cf6601883615898565b91507f5374616b6572207265736572766520697320656d7074792100000000000000006000830152602082019050919050565b6000614d36602c83615898565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614d9c602083615898565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614ddc602983615898565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614e42602f83615898565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000614ea8602183615898565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614f0e602083615898565b91507f5374617274696e6720696e64657820626c6f636b206d757374206265207365746000830152602082019050919050565b6000614f4e603183615898565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614fb4602b83615898565b91507f4e756d626572206f66204e46547320776f756c6420657863656564207468652060008301527f70726963652072616e67650000000000000000000000000000000000000000006020830152604082019050919050565b600061501a602c83615898565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000615080601583615898565b91507f496e636f72726563742065746865722076616c756500000000000000000000006000830152602082019050919050565b60006150c0601a83615898565b91507f50726573616c6520737570706c79206973206465706c657465640000000000006000830152602082019050919050565b60006151006017836158a9565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b6000615140601483615898565b91507f53616c6520686173206e6f7420737461727465640000000000000000000000006000830152602082019050919050565b60006151806011836158a9565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60006151c0602f83615898565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b61522281615a1d565b82525050565b61523181615a4b565b82525050565b61524081615a55565b82525050565b600061525282856146bc565b915061525e82846146bc565b91508190509392505050565b6000615275826150f3565b915061528182856146bc565b915061528c82615173565b915061529882846146bc565b91508190509392505050565b60006020820190506152b9600083018461461d565b92915050565b60006080820190506152d4600083018761461d565b6152e1602083018661461d565b6152ee6040830185615228565b8181036060830152615300818461464a565b905095945050505050565b6000602082019050615320600083018461462c565b92915050565b600060208201905061533b600083018461463b565b92915050565b6000602082019050818103600083015261535b8184614683565b905092915050565b6000602082019050818103600083015261537c816146ed565b9050919050565b6000602082019050818103600083015261539c8161472d565b9050919050565b600060208201905081810360008301526153bc81614793565b9050919050565b600060208201905081810360008301526153dc816147f9565b9050919050565b600060208201905081810360008301526153fc8161485f565b9050919050565b6000602082019050818103600083015261541c8161489f565b9050919050565b6000602082019050818103600083015261543c816148df565b9050919050565b6000602082019050818103600083015261545c81614945565b9050919050565b6000602082019050818103600083015261547c81614985565b9050919050565b6000602082019050818103600083015261549c816149eb565b9050919050565b600060208201905081810360008301526154bc81614a51565b9050919050565b600060208201905081810360008301526154dc81614a91565b9050919050565b600060208201905081810360008301526154fc81614ad1565b9050919050565b6000602082019050818103600083015261551c81614b37565b9050919050565b6000602082019050818103600083015261553c81614b9d565b9050919050565b6000602082019050818103600083015261555c81614c03565b9050919050565b6000602082019050818103600083015261557c81614c43565b9050919050565b6000602082019050818103600083015261559c81614c83565b9050919050565b600060208201905081810360008301526155bc81614ce9565b9050919050565b600060208201905081810360008301526155dc81614d29565b9050919050565b600060208201905081810360008301526155fc81614d8f565b9050919050565b6000602082019050818103600083015261561c81614dcf565b9050919050565b6000602082019050818103600083015261563c81614e35565b9050919050565b6000602082019050818103600083015261565c81614e9b565b9050919050565b6000602082019050818103600083015261567c81614f01565b9050919050565b6000602082019050818103600083015261569c81614f41565b9050919050565b600060208201905081810360008301526156bc81614fa7565b9050919050565b600060208201905081810360008301526156dc8161500d565b9050919050565b600060208201905081810360008301526156fc81615073565b9050919050565b6000602082019050818103600083015261571c816150b3565b9050919050565b6000602082019050818103600083015261573c81615133565b9050919050565b6000602082019050818103600083015261575c816151b3565b9050919050565b60006020820190506157786000830184615219565b92915050565b60006020820190506157936000830184615228565b92915050565b60006020820190506157ae6000830184615237565b92915050565b6000604051905081810181811067ffffffffffffffff821117156157db576157da615c0e565b5b8060405250919050565b600067ffffffffffffffff821115615800576157ff615c0e565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561582c5761582b615c0e565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561585c5761585b615c0e565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006158bf82615a4b565b91506158ca83615a4b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156158ff576158fe615b81565b5b828201905092915050565b600061591582615a4b565b915061592083615a4b565b9250826159305761592f615bb0565b5b828204905092915050565b600061594682615a4b565b915061595183615a4b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561598a57615989615b81565b5b828202905092915050565b60006159a082615a4b565b91506159ab83615a4b565b9250828210156159be576159bd615b81565b5b828203905092915050565b60006159d482615a2b565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015615a96578082015181840152602081019050615a7b565b83811115615aa5576000848401525b50505050565b6000615ab682615a4b565b91506000821415615aca57615ac9615b81565b5b600182039050919050565b60006002820490506001821680615aed57607f821691505b60208210811415615b0157615b00615bdf565b5b50919050565b6000615b1282615a4b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615b4557615b44615b81565b5b600182019050919050565b6000615b5b82615a4b565b9150615b6683615a4b565b925082615b7657615b75615bb0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615c57816159c9565b8114615c6257600080fd5b50565b615c6e816159db565b8114615c7957600080fd5b50565b615c85816159e7565b8114615c9057600080fd5b50565b615c9c816159f1565b8114615ca757600080fd5b50565b615cb381615a4b565b8114615cbe57600080fd5b5056fea2646970667358221220478630f74b01e5ff8677be1a50d8538179be9116c3ba7e6475df50948ab7623964736f6c63430008000033

Deployed Bytecode Sourcemap

51070:7946:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57854:203;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19658:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21217:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20740:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58885:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32325:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51666:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53204:366;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22107:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51342:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7714:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8099:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31993:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52613:178;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57066:102;;;;;;;;;;;;;:::i;:::-;;9147:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56509:551;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51948:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57296:105;;;;;;;;;;;;;:::i;:::-;;22517:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32515:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52961:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55677:824;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19352:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19082:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53064:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50414:94;;;;;;;;;;;;;:::i;:::-;;51492:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51875:68;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51178:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58693:186;;;;;;;;;;;;;:::i;:::-;;49763:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51748:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6599:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19827:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53721:1070;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5690:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21510:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51456:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51423:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51705:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51380:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22773:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53580:131;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57696:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54799:831;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51618:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8491:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51580:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21876:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58063:624;;;;;;;;;;;;;:::i;:::-;;51789:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50663:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57176:112;;;;;;;;;;;;;:::i;:::-;;51306:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57854:203;57992:4;58015:36;58039:11;58015:23;:36::i;:::-;58008:43;;57854:203;;;:::o;19658:100::-;19712:13;19745:5;19738:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19658:100;:::o;21217:221::-;21293:7;21321:16;21329:7;21321;:16::i;:::-;21313:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21406:15;:24;21422:7;21406:24;;;;;;;;;;;;;;;;;;;;;21399:31;;21217:221;;;:::o;20740:411::-;20821:13;20837:23;20852:7;20837:14;:23::i;:::-;20821:39;;20885:5;20879:11;;:2;:11;;;;20871:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;20979:5;20963:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;20988:37;21005:5;21012:12;:10;:12::i;:::-;20988:16;:37::i;:::-;20963:62;20941:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;21122:21;21131:2;21135:7;21122:8;:21::i;:::-;20740:411;;;:::o;58885:128::-;51916:27;6181:30;6192:4;6198:12;:10;:12::i;:::-;6181:10;:30::i;:::-;58993:14:::1;58980:10;:27;;;;;;;;;;;;:::i;:::-;;58885:128:::0;;:::o;32325:113::-;32386:7;32413:10;:17;;;;32406:24;;32325:113;:::o;51666:34::-;;;;;;;;;;;;;:::o;53204:366::-;53249:7;53265:18;53286:13;:11;:13::i;:::-;53265:34;;53327:1;53310:13;:18;;:41;;;;;53348:3;53332:13;:19;53310:41;53306:258;;;53370:17;53363:24;;;;;53306:258;53420:3;53403:13;:20;;:44;;;;;53443:4;53427:13;:20;53403:44;53400:164;;;53466:17;53459:24;;;;;53400:164;53516:4;53499:13;:21;53496:68;;53539:17;53532:24;;;;;53496:68;53204:366;;;:::o;22107:339::-;22302:41;22321:12;:10;:12::i;:::-;22335:7;22302:18;:41::i;:::-;22294:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;22410:28;22420:4;22426:2;22430:7;22410:9;:28::i;:::-;22107:339;;;:::o;51342:33::-;;;;:::o;7714:123::-;7780:7;7807:6;:12;7814:4;7807:12;;;;;;;;;;;:22;;;7800:29;;7714:123;;;:::o;8099:147::-;8182:18;8195:4;8182:12;:18::i;:::-;6181:30;6192:4;6198:12;:10;:12::i;:::-;6181:10;:30::i;:::-;8213:25:::1;8224:4;8230:7;8213:10;:25::i;:::-;8099:147:::0;;;:::o;31993:256::-;32090:7;32126:23;32143:5;32126:16;:23::i;:::-;32118:5;:31;32110:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;32215:12;:19;32228:5;32215:19;;;;;;;;;;;;;;;:26;32235:5;32215:26;;;;;;;;;;;;32208:33;;31993:256;;;;:::o;52613:178::-;51916:27;6181:30;6192:4;6198:12;:10;:12::i;:::-;6181:10;:30::i;:::-;52712:6:::1;52708:77;52728:8;:15;52724:1;:19;52708:77;;;52750:35;51986:24;52773:8;52782:1;52773:11;;;;;;;;;;;;;;;;;;;;;;52750:9;:35::i;:::-;52745:3;;;;;:::i;:::-;;;;52708:77;;;;52613:178:::0;;:::o;57066:102::-;51916:27;6181:30;6192:4;6198:12;:10;:12::i;:::-;6181:10;:30::i;:::-;57148:14:::1;;;;;;;;;;;57147:15;57130:14;;:32;;;;;;;;;;;;;;;;;;57066:102:::0;:::o;9147:218::-;9254:12;:10;:12::i;:::-;9243:23;;:7;:23;;;9235:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;9331:26;9343:4;9349:7;9331:11;:26::i;:::-;9147:218;;:::o;56509:551::-;49994:12;:10;:12::i;:::-;49983:23;;:7;:5;:7::i;:::-;:23;;;49975:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56587:10:::1;;56576:7;:21;;56568:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;56677:6;56672:169;56693:7;56689:1;:11;56672:169;;;56716:14;56749:1;56733:13;:11;:13::i;:::-;:17;;;;:::i;:::-;56716:34;;56797:32;56807:10;56819:9;56797;:32::i;:::-;56672:169;56702:3;;;;;:::i;:::-;;;;56672:169;;;;56883:7;56870:10;;:20;;;;:::i;:::-;56857:10;:33;;;;56923:7;56911:9;;:19;;;;:::i;:::-;56899:9;:31;;;;56973:1;56951:18;;:23;:58;;;;;51297:4;56979:29;;:13;:11;:13::i;:::-;:29;56951:58;56947:108;;;57041:12;57020:18;:33;;;;56947:108;56509:551:::0;:::o;51948:62::-;51986:24;51948:62;:::o;57296:105::-;49994:12;:10;:12::i;:::-;49983:23;;:7;:5;:7::i;:::-;:23;;;49975:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57355:10:::1;57347:24;;:47;57372:21;57347:47;;;;;;;;;;;;;;;;;;;;;;;57339:56;;;::::0;::::1;;57296:105::o:0;22517:185::-;22655:39;22672:4;22678:2;22682:7;22655:39;;;;;;;;;;;;:16;:39::i;:::-;22517:185;;;:::o;32515:233::-;32590:7;32626:30;:28;:30::i;:::-;32618:5;:38;32610:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;32723:10;32734:5;32723:17;;;;;;;;;;;;;;;;;;;;;;;;32716:24;;32515:233;;;:::o;52961:95::-;49994:12;:10;:12::i;:::-;49983:23;;:7;:5;:7::i;:::-;:23;;;49975:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53043:7:::1;53027:13;:23;;;;;;;;;;;;:::i;:::-;;52961:95:::0;:::o;55677:824::-;51986:24;6181:30;6192:4;6198:12;:10;:12::i;:::-;6181:10;:30::i;:::-;55769:14:::1;;;;;;;;;;;55761:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;55838:1;55823:12;;:16;55815:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;55913:7;55896:14;:12;:14::i;:::-;:24;;;;:::i;:::-;55883:9;:37;;55875:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;55987:1;55976:7;55961:12;;:22;;;;:::i;:::-;:27;;55953:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;56040:12;:10;:12::i;:::-;56029:7;:23;;56021:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;56118:6;56113:165;56134:7;56130:1;:11;56113:165;;;56157:14;56190:1;56174:13;:11;:13::i;:::-;:17;;;;:::i;:::-;56157:34;;56238:32;56248:10;56260:9;56238;:32::i;:::-;56113:165;56143:3;;;;;:::i;:::-;;;;56113:165;;;;56318:1;56296:18;;:23;:58;;;;;51297:4;56324:29;;:13;:11;:13::i;:::-;:29;56296:58;56292:108;;;56386:12;56365:18;:33;;;;56292:108;56444:7;56429:12;;:22;;;;:::i;:::-;56414:12;:37;;;;56488:7;56473:12;;:22;;;;:::i;:::-;56458:12;:37;;;;55677:824:::0;;:::o;19352:239::-;19424:7;19444:13;19460:7;:16;19468:7;19460:16;;;;;;;;;;;;;;;;;;;;;19444:32;;19512:1;19495:19;;:5;:19;;;;19487:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19578:5;19571:12;;;19352:239;;;:::o;19082:208::-;19154:7;19199:1;19182:19;;:5;:19;;;;19174:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;19266:9;:16;19276:5;19266:16;;;;;;;;;;;;;;;;19259:23;;19082:208;;;:::o;53064:92::-;53108:13;53137;53130:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53064:92;:::o;50414:94::-;49994:12;:10;:12::i;:::-;49983:23;;:7;:5;:7::i;:::-;:23;;;49975:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50479:21:::1;50497:1;50479:9;:21::i;:::-;50414:94::o:0;51492:32::-;;;;:::o;51875:68::-;51916:27;51875:68;:::o;51178:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58693:186::-;51916:27;6181:30;6192:4;6198:12;:10;:12::i;:::-;6181:10;:30::i;:::-;58798:1:::1;58781:13;;:18;58773:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;58861:12;58840:18;:33;;;;58693:186:::0;:::o;49763:87::-;49809:7;49836:6;;;;;;;;;;;49829:13;;49763:87;:::o;51748:36::-;;;;;;;;;;;;;:::o;6599:139::-;6677:4;6701:6;:12;6708:4;6701:12;;;;;;;;;;;:20;;:29;6722:7;6701:29;;;;;;;;;;;;;;;;;;;;;;;;;6694:36;;6599:139;;;;:::o;19827:104::-;19883:13;19916:7;19909:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19827:104;:::o;53721:1070::-;53782:14;;;;;;;;;;;53774:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;53894:13;;53879:12;;53867:9;;53851:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:40;;;;:::i;:::-;:56;;;;:::i;:::-;51297:4;53836:71;;;53828:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;53951:1;53941:7;:11;:43;;;;;53967:17;;;;;;;;;;;53956:28;;:7;:28;;53941:43;53933:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;54040:12;:10;:12::i;:::-;54029:7;:23;;54021:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;54184:13;;54169:12;;54157:9;;54147:7;54131:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:35;;;;:::i;:::-;:50;;;;:::i;:::-;:66;;;;:::i;:::-;51297:4;54115:82;;;;54107:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;54268:7;54251:14;:12;:14::i;:::-;:24;;;;:::i;:::-;54238:9;:37;;54230:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;54315:6;54310:165;54331:7;54327:1;:11;54310:165;;;54354:14;54387:1;54371:13;:11;:13::i;:::-;:17;;;;:::i;:::-;54354:34;;54435:32;54445:10;54457:9;54435;:32::i;:::-;54310:165;54340:3;;;;;:::i;:::-;;;;54310:165;;;;54697:1;54675:18;;:23;:58;;;;;51297:4;54703:29;;:13;:11;:13::i;:::-;:29;54675:58;54671:114;;;54765:12;54744:18;:33;;;;54671:114;53721:1070;:::o;5690:49::-;5735:4;5690:49;;;:::o;21510:295::-;21625:12;:10;:12::i;:::-;21613:24;;:8;:24;;;;21605:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;21725:8;21680:18;:32;21699:12;:10;:12::i;:::-;21680:32;;;;;;;;;;;;;;;:42;21713:8;21680:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;21778:8;21749:48;;21764:12;:10;:12::i;:::-;21749:48;;;21788:8;21749:48;;;;;;:::i;:::-;;;;;;;;21510:295;;:::o;51456:31::-;;;;:::o;51423:28::-;;;;:::o;51705:37::-;;;;;;;;;;;;;:::o;51380:34::-;;;;:::o;22773:328::-;22948:41;22967:12;:10;:12::i;:::-;22981:7;22948:18;:41::i;:::-;22940:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23054:39;23068:4;23074:2;23078:7;23087:5;23054:13;:39::i;:::-;22773:328;;;;:::o;53580:131::-;53623:7;53639:13;53673;:11;:13::i;:::-;53655:15;;;;;;;;;;;:31;;;;;;:::i;:::-;53639:47;;53700:5;53693:12;;;53580:131;:::o;57696:154::-;57789:13;57821:23;57836:7;57821:14;:23::i;:::-;57814:30;;57696:154;;;:::o;54799:831::-;54867:17;;;;;;;;;;;54859:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;54940:1;54924:13;;:17;54916:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;55017:7;55000:14;:12;:14::i;:::-;:24;;;;:::i;:::-;54987:9;:37;;54979:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;55092:1;55081:7;55065:13;;:23;;;;:::i;:::-;:28;;55057:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;55165:12;:10;:12::i;:::-;55154:7;:23;;55146:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;55243:6;55238:165;55259:7;55255:1;:11;55238:165;;;55282:14;55315:1;55299:13;:11;:13::i;:::-;:17;;;;:::i;:::-;55282:34;;55363:32;55373:10;55385:9;55363;:32::i;:::-;55238:165;55268:3;;;;;:::i;:::-;;;;55238:165;;;;55443:1;55421:18;;:23;:58;;;;;51297:4;55449:29;;:13;:11;:13::i;:::-;:29;55421:58;55417:108;;;55511:12;55490:18;:33;;;;55417:108;55571:7;55555:13;;:23;;;;:::i;:::-;55539:13;:39;;;;55617:7;55601:13;;:23;;;;:::i;:::-;55585:13;:39;;;;54799:831;:::o;51618:28::-;;;;:::o;8491:149::-;8575:18;8588:4;8575:12;:18::i;:::-;6181:30;6192:4;6198:12;:10;:12::i;:::-;6181:10;:30::i;:::-;8606:26:::1;8618:4;8624:7;8606:11;:26::i;:::-;8491:149:::0;;;:::o;51580:33::-;;;;:::o;21876:164::-;21973:4;21997:18;:25;22016:5;21997:25;;;;;;;;;;;;;;;:35;22023:8;21997:35;;;;;;;;;;;;;;;;;;;;;;;;;21990:42;;21876:164;;;;:::o;58063:624::-;58130:1;58113:13;;:18;58105:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;58202:1;58180:18;;:23;;58172:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51297:4;58269:50;;58284:18;;58274:29;58269:35;;:50;;;;:::i;:::-;58253:13;:66;;;;58483:3;58462:18;;58447:12;:33;;;;:::i;:::-;:39;58443:126;;;51297:4;58513:48;;58543:1;58528:12;:16;;;;:::i;:::-;58518:27;58513:33;;:48;;;;:::i;:::-;58497:13;:64;;;;58443:126;58629:1;58612:13;;:18;58608:74;;;58673:1;58657:13;;:17;;;;:::i;:::-;58641:13;:33;;;;58608:74;58063:624::o;51789:36::-;;;;;;;;;;;;;:::o;50663:192::-;49994:12;:10;:12::i;:::-;49983:23;;:7;:5;:7::i;:::-;:23;;;49975:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50772:1:::1;50752:22;;:8;:22;;;;50744:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;50828:19;50838:8;50828:9;:19::i;:::-;50663:192:::0;:::o;57176:112::-;51916:27;6181:30;6192:4;6198:12;:10;:12::i;:::-;6181:10;:30::i;:::-;57265:17:::1;;;;;;;;;;;57264:18;57244:17;;:38;;;;;;;;;;;;;;;;;;57176:112:::0;:::o;51306:31::-;;;;:::o;39455:451::-;39530:13;39556:19;39601:1;39592:6;39588:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;39578:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39556:47;;39614:15;:6;39621:1;39614:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;39640;:6;39647:1;39640:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;39671:9;39696:1;39687:6;39683:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;39671:26;;39666:135;39703:1;39699;:5;39666:135;;;39738:12;39759:3;39751:5;:11;39738:25;;;;;;;;;;;;;;;;;;39726:6;39733:1;39726:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;39788:1;39778:11;;;;;39706:3;;;;:::i;:::-;;;39666:135;;;;39828:1;39819:5;:10;39811:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;39891:6;39877:21;;;39455:451;;;;:::o;6303:204::-;6388:4;6427:32;6412:47;;;:11;:47;;;;:87;;;;6463:36;6487:11;6463:23;:36::i;:::-;6412:87;6405:94;;6303:204;;;:::o;24611:127::-;24676:4;24728:1;24700:30;;:7;:16;24708:7;24700:16;;;;;;;;;;;;;;;;;;;;;:30;;;;24693:37;;24611:127;;;:::o;2272:98::-;2325:7;2352:10;2345:17;;2272:98;:::o;28593:174::-;28695:2;28668:15;:24;28684:7;28668:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28751:7;28747:2;28713:46;;28722:23;28737:7;28722:14;:23::i;:::-;28713:46;;;;;;;;;;;;28593:174;;:::o;7028:497::-;7109:22;7117:4;7123:7;7109;:22::i;:::-;7104:414;;7297:41;7325:7;7297:41;;7335:2;7297:19;:41::i;:::-;7411:38;7439:4;7431:13;;7446:2;7411:19;:38::i;:::-;7202:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;7148:358;;;;;;;;;;;:::i;:::-;;;;;;;;7104:414;7028:497;;:::o;24905:348::-;24998:4;25023:16;25031:7;25023;:16::i;:::-;25015:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25099:13;25115:23;25130:7;25115:14;:23::i;:::-;25099:39;;25168:5;25157:16;;:7;:16;;;:51;;;;25201:7;25177:31;;:20;25189:7;25177:11;:20::i;:::-;:31;;;25157:51;:87;;;;25212:32;25229:5;25236:7;25212:16;:32::i;:::-;25157:87;25149:96;;;24905:348;;;;:::o;27897:578::-;28056:4;28029:31;;:23;28044:7;28029:14;:23::i;:::-;:31;;;28021:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;28139:1;28125:16;;:2;:16;;;;28117:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;28195:39;28216:4;28222:2;28226:7;28195:20;:39::i;:::-;28299:29;28316:1;28320:7;28299:8;:29::i;:::-;28360:1;28341:9;:15;28351:4;28341:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;28389:1;28372:9;:13;28382:2;28372:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28420:2;28401:7;:16;28409:7;28401:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28459:7;28455:2;28440:27;;28449:4;28440:27;;;;;;;;;;;;27897:578;;;:::o;10451:229::-;10526:22;10534:4;10540:7;10526;:22::i;:::-;10521:152;;10597:4;10565:6;:12;10572:4;10565:12;;;;;;;;;;;:20;;:29;10586:7;10565:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;10648:12;:10;:12::i;:::-;10621:40;;10639:7;10621:40;;10633:4;10621:40;;;;;;;;;;10521:152;10451:229;;:::o;10688:230::-;10763:22;10771:4;10777:7;10763;:22::i;:::-;10759:152;;;10834:5;10802:6;:12;10809:4;10802:12;;;;;;;;;;;:20;;:29;10823:7;10802:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;10886:12;:10;:12::i;:::-;10859:40;;10877:7;10859:40;;10871:4;10859:40;;;;;;;;;;10759:152;10688:230;;:::o;25595:110::-;25671:26;25681:2;25685:7;25671:26;;;;;;;;;;;;:9;:26::i;:::-;25595:110;;:::o;50863:173::-;50919:16;50938:6;;;;;;;;;;;50919:25;;50964:8;50955:6;;:17;;;;;;;;;;;;;;;;;;51019:8;50988:40;;51009:8;50988:40;;;;;;;;;;;;50863:173;;:::o;23983:315::-;24140:28;24150:4;24156:2;24160:7;24140:9;:28::i;:::-;24187:48;24210:4;24216:2;24220:7;24229:5;24187:22;:48::i;:::-;24179:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;23983:315;;;;:::o;20002:334::-;20075:13;20109:16;20117:7;20109;:16::i;:::-;20101:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;20190:21;20214:10;:8;:10::i;:::-;20190:34;;20266:1;20248:7;20242:21;:25;:86;;;;;;;;;;;;;;;;;20294:7;20303:18;:7;:16;:18::i;:::-;20277:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20242:86;20235:93;;;20002:334;;;:::o;31685:224::-;31787:4;31826:35;31811:50;;;:11;:50;;;;:90;;;;31865:36;31889:11;31865:23;:36::i;:::-;31811:90;31804:97;;31685:224;;;:::o;57405:188::-;57542:45;57569:4;57575:2;57579:7;57542:26;:45::i;:::-;57405:188;;;:::o;25932:321::-;26062:18;26068:2;26072:7;26062:5;:18::i;:::-;26113:54;26144:1;26148:2;26152:7;26161:5;26113:22;:54::i;:::-;26091:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;25932:321;;;:::o;29332:803::-;29487:4;29508:15;:2;:13;;;:15::i;:::-;29504:624;;;29560:2;29544:36;;;29581:12;:10;:12::i;:::-;29595:4;29601:7;29610:5;29544:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;29540:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29807:1;29790:6;:13;:18;29786:272;;;29833:60;;;;;;;;;;:::i;:::-;;;;;;;;29786:272;30008:6;30002:13;29993:6;29989:2;29985:15;29978:38;29540:533;29677:45;;;29667:55;;;:6;:55;;;;29660:62;;;;;29504:624;30112:4;30105:11;;29332:803;;;;;;;:::o;52839:116::-;52899:13;52936;52929:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52839:116;:::o;38154:723::-;38210:13;38440:1;38431:5;:10;38427:53;;;38458:10;;;;;;;;;;;;;;;;;;;;;38427:53;38490:12;38505:5;38490:20;;38521:14;38546:78;38561:1;38553:4;:9;38546:78;;38579:8;;;;;:::i;:::-;;;;38610:2;38602:10;;;;;:::i;:::-;;;38546:78;;;38634:19;38666:6;38656:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38634:39;;38684:154;38700:1;38691:5;:10;38684:154;;38728:1;38718:11;;;;;:::i;:::-;;;38795:2;38787:5;:10;;;;:::i;:::-;38774:2;:24;;;;:::i;:::-;38761:39;;38744:6;38751;38744:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;38824:2;38815:11;;;;;:::i;:::-;;;38684:154;;;38862:6;38848:21;;;;;38154:723;;;;:::o;18713:305::-;18815:4;18867:25;18852:40;;;:11;:40;;;;:105;;;;18924:33;18909:48;;;:11;:48;;;;18852:105;:158;;;;18974:36;18998:11;18974:23;:36::i;:::-;18852:158;18832:178;;18713:305;;;:::o;33361:589::-;33505:45;33532:4;33538:2;33542:7;33505:26;:45::i;:::-;33583:1;33567:18;;:4;:18;;;33563:187;;;33602:40;33634:7;33602:31;:40::i;:::-;33563:187;;;33672:2;33664:10;;:4;:10;;;33660:90;;33691:47;33724:4;33730:7;33691:32;:47::i;:::-;33660:90;33563:187;33778:1;33764:16;;:2;:16;;;33760:183;;;33797:45;33834:7;33797:36;:45::i;:::-;33760:183;;;33870:4;33864:10;;:2;:10;;;33860:83;;33891:40;33919:2;33923:7;33891:27;:40::i;:::-;33860:83;33760:183;33361:589;;;:::o;26589:382::-;26683:1;26669:16;;:2;:16;;;;26661:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;26742:16;26750:7;26742;:16::i;:::-;26741:17;26733:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;26804:45;26833:1;26837:2;26841:7;26804:20;:45::i;:::-;26879:1;26862:9;:13;26872:2;26862:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;26910:2;26891:7;:16;26899:7;26891:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;26955:7;26951:2;26930:33;;26947:1;26930:33;;;;;;;;;;;;26589:382;;:::o;40675:387::-;40735:4;40943:12;41010:7;40998:20;40990:28;;41053:1;41046:4;:8;41039:15;;;40675:387;;;:::o;1542:157::-;1627:4;1666:25;1651:40;;;:11;:40;;;;1644:47;;1542:157;;;:::o;30707:126::-;;;;:::o;34673:164::-;34777:10;:17;;;;34750:15;:24;34766:7;34750:24;;;;;;;;;;;:44;;;;34805:10;34821:7;34805:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34673:164;:::o;35464:988::-;35730:22;35780:1;35755:22;35772:4;35755:16;:22::i;:::-;:26;;;;:::i;:::-;35730:51;;35792:18;35813:17;:26;35831:7;35813:26;;;;;;;;;;;;35792:47;;35960:14;35946:10;:28;35942:328;;35991:19;36013:12;:18;36026:4;36013:18;;;;;;;;;;;;;;;:34;36032:14;36013:34;;;;;;;;;;;;35991:56;;36097:11;36064:12;:18;36077:4;36064:18;;;;;;;;;;;;;;;:30;36083:10;36064:30;;;;;;;;;;;:44;;;;36214:10;36181:17;:30;36199:11;36181:30;;;;;;;;;;;:43;;;;35942:328;;36366:17;:26;36384:7;36366:26;;;;;;;;;;;36359:33;;;36410:12;:18;36423:4;36410:18;;;;;;;;;;;;;;;:34;36429:14;36410:34;;;;;;;;;;;36403:41;;;35464:988;;;;:::o;36747:1079::-;37000:22;37045:1;37025:10;:17;;;;:21;;;;:::i;:::-;37000:46;;37057:18;37078:15;:24;37094:7;37078:24;;;;;;;;;;;;37057:45;;37429:19;37451:10;37462:14;37451:26;;;;;;;;;;;;;;;;;;;;;;;;37429:48;;37515:11;37490:10;37501;37490:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;37626:10;37595:15;:28;37611:11;37595:28;;;;;;;;;;;:41;;;;37767:15;:24;37783:7;37767:24;;;;;;;;;;;37760:31;;;37802:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36747:1079;;;;:::o;34251:221::-;34336:14;34353:20;34370:2;34353:16;:20::i;:::-;34336:37;;34411:7;34384:12;:16;34397:2;34384:16;;;;;;;;;;;;;;;:24;34401:6;34384:24;;;;;;;;;;;:34;;;;34458:6;34429:17;:26;34447:7;34429:26;;;;;;;;;;;:35;;;;34251:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:344::-;;1103:65;1118:49;1160:6;1118:49;:::i;:::-;1103:65;:::i;:::-;1094:74;;1191:6;1184:5;1177:21;1229:4;1222:5;1218:16;1267:3;1258:6;1253:3;1249:16;1246:25;1243:2;;;1284:1;1281;1274:12;1243:2;1297:41;1331:6;1326:3;1321;1297:41;:::i;:::-;1084:260;;;;;;:::o;1350:139::-;;1434:6;1421:20;1412:29;;1450:33;1477:5;1450:33;:::i;:::-;1402:87;;;;:::o;1512:303::-;;1632:3;1625:4;1617:6;1613:17;1609:27;1599:2;;1650:1;1647;1640:12;1599:2;1690:6;1677:20;1715:94;1805:3;1797:6;1790:4;1782:6;1778:17;1715:94;:::i;:::-;1706:103;;1589:226;;;;;:::o;1821:133::-;;1902:6;1889:20;1880:29;;1918:30;1942:5;1918:30;:::i;:::-;1870:84;;;;:::o;1960:139::-;;2044:6;2031:20;2022:29;;2060:33;2087:5;2060:33;:::i;:::-;2012:87;;;;:::o;2105:137::-;;2188:6;2175:20;2166:29;;2204:32;2230:5;2204:32;:::i;:::-;2156:86;;;;:::o;2248:141::-;;2335:6;2329:13;2320:22;;2351:32;2377:5;2351:32;:::i;:::-;2310:79;;;;:::o;2408:271::-;;2512:3;2505:4;2497:6;2493:17;2489:27;2479:2;;2530:1;2527;2520:12;2479:2;2570:6;2557:20;2595:78;2669:3;2661:6;2654:4;2646:6;2642:17;2595:78;:::i;:::-;2586:87;;2469:210;;;;;:::o;2699:273::-;;2804:3;2797:4;2789:6;2785:17;2781:27;2771:2;;2822:1;2819;2812:12;2771:2;2862:6;2849:20;2887:79;2962:3;2954:6;2947:4;2939:6;2935:17;2887:79;:::i;:::-;2878:88;;2761:211;;;;;:::o;2978:139::-;;3062:6;3049:20;3040:29;;3078:33;3105:5;3078:33;:::i;:::-;3030:87;;;;:::o;3123:262::-;;3231:2;3219:9;3210:7;3206:23;3202:32;3199:2;;;3247:1;3244;3237:12;3199:2;3290:1;3315:53;3360:7;3351:6;3340:9;3336:22;3315:53;:::i;:::-;3305:63;;3261:117;3189:196;;;;:::o;3391:407::-;;;3516:2;3504:9;3495:7;3491:23;3487:32;3484:2;;;3532:1;3529;3522:12;3484:2;3575:1;3600:53;3645:7;3636:6;3625:9;3621:22;3600:53;:::i;:::-;3590:63;;3546:117;3702:2;3728:53;3773:7;3764:6;3753:9;3749:22;3728:53;:::i;:::-;3718:63;;3673:118;3474:324;;;;;:::o;3804:552::-;;;;3946:2;3934:9;3925:7;3921:23;3917:32;3914:2;;;3962:1;3959;3952:12;3914:2;4005:1;4030:53;4075:7;4066:6;4055:9;4051:22;4030:53;:::i;:::-;4020:63;;3976:117;4132:2;4158:53;4203:7;4194:6;4183:9;4179:22;4158:53;:::i;:::-;4148:63;;4103:118;4260:2;4286:53;4331:7;4322:6;4311:9;4307:22;4286:53;:::i;:::-;4276:63;;4231:118;3904:452;;;;;:::o;4362:809::-;;;;;4530:3;4518:9;4509:7;4505:23;4501:33;4498:2;;;4547:1;4544;4537:12;4498:2;4590:1;4615:53;4660:7;4651:6;4640:9;4636:22;4615:53;:::i;:::-;4605:63;;4561:117;4717:2;4743:53;4788:7;4779:6;4768:9;4764:22;4743:53;:::i;:::-;4733:63;;4688:118;4845:2;4871:53;4916:7;4907:6;4896:9;4892:22;4871:53;:::i;:::-;4861:63;;4816:118;5001:2;4990:9;4986:18;4973:32;5032:18;5024:6;5021:30;5018:2;;;5064:1;5061;5054:12;5018:2;5092:62;5146:7;5137:6;5126:9;5122:22;5092:62;:::i;:::-;5082:72;;4944:220;4488:683;;;;;;;:::o;5177:401::-;;;5299:2;5287:9;5278:7;5274:23;5270:32;5267:2;;;5315:1;5312;5305:12;5267:2;5358:1;5383:53;5428:7;5419:6;5408:9;5404:22;5383:53;:::i;:::-;5373:63;;5329:117;5485:2;5511:50;5553:7;5544:6;5533:9;5529:22;5511:50;:::i;:::-;5501:60;;5456:115;5257:321;;;;;:::o;5584:407::-;;;5709:2;5697:9;5688:7;5684:23;5680:32;5677:2;;;5725:1;5722;5715:12;5677:2;5768:1;5793:53;5838:7;5829:6;5818:9;5814:22;5793:53;:::i;:::-;5783:63;;5739:117;5895:2;5921:53;5966:7;5957:6;5946:9;5942:22;5921:53;:::i;:::-;5911:63;;5866:118;5667:324;;;;;:::o;5997:405::-;;6130:2;6118:9;6109:7;6105:23;6101:32;6098:2;;;6146:1;6143;6136:12;6098:2;6217:1;6206:9;6202:17;6189:31;6247:18;6239:6;6236:30;6233:2;;;6279:1;6276;6269:12;6233:2;6307:78;6377:7;6368:6;6357:9;6353:22;6307:78;:::i;:::-;6297:88;;6160:235;6088:314;;;;:::o;6408:262::-;;6516:2;6504:9;6495:7;6491:23;6487:32;6484:2;;;6532:1;6529;6522:12;6484:2;6575:1;6600:53;6645:7;6636:6;6625:9;6621:22;6600:53;:::i;:::-;6590:63;;6546:117;6474:196;;;;:::o;6676:407::-;;;6801:2;6789:9;6780:7;6776:23;6772:32;6769:2;;;6817:1;6814;6807:12;6769:2;6860:1;6885:53;6930:7;6921:6;6910:9;6906:22;6885:53;:::i;:::-;6875:63;;6831:117;6987:2;7013:53;7058:7;7049:6;7038:9;7034:22;7013:53;:::i;:::-;7003:63;;6958:118;6759:324;;;;;:::o;7089:260::-;;7196:2;7184:9;7175:7;7171:23;7167:32;7164:2;;;7212:1;7209;7202:12;7164:2;7255:1;7280:52;7324:7;7315:6;7304:9;7300:22;7280:52;:::i;:::-;7270:62;;7226:116;7154:195;;;;:::o;7355:282::-;;7473:2;7461:9;7452:7;7448:23;7444:32;7441:2;;;7489:1;7486;7479:12;7441:2;7532:1;7557:63;7612:7;7603:6;7592:9;7588:22;7557:63;:::i;:::-;7547:73;;7503:127;7431:206;;;;:::o;7643:375::-;;7761:2;7749:9;7740:7;7736:23;7732:32;7729:2;;;7777:1;7774;7767:12;7729:2;7848:1;7837:9;7833:17;7820:31;7878:18;7870:6;7867:30;7864:2;;;7910:1;7907;7900:12;7864:2;7938:63;7993:7;7984:6;7973:9;7969:22;7938:63;:::i;:::-;7928:73;;7791:220;7719:299;;;;:::o;8024:262::-;;8132:2;8120:9;8111:7;8107:23;8103:32;8100:2;;;8148:1;8145;8138:12;8100:2;8191:1;8216:53;8261:7;8252:6;8241:9;8237:22;8216:53;:::i;:::-;8206:63;;8162:117;8090:196;;;;:::o;8292:118::-;8379:24;8397:5;8379:24;:::i;:::-;8374:3;8367:37;8357:53;;:::o;8416:109::-;8497:21;8512:5;8497:21;:::i;:::-;8492:3;8485:34;8475:50;;:::o;8531:118::-;8618:24;8636:5;8618:24;:::i;:::-;8613:3;8606:37;8596:53;;:::o;8655:360::-;;8769:38;8801:5;8769:38;:::i;:::-;8823:70;8886:6;8881:3;8823:70;:::i;:::-;8816:77;;8902:52;8947:6;8942:3;8935:4;8928:5;8924:16;8902:52;:::i;:::-;8979:29;9001:6;8979:29;:::i;:::-;8974:3;8970:39;8963:46;;8745:270;;;;;:::o;9021:364::-;;9137:39;9170:5;9137:39;:::i;:::-;9192:71;9256:6;9251:3;9192:71;:::i;:::-;9185:78;;9272:52;9317:6;9312:3;9305:4;9298:5;9294:16;9272:52;:::i;:::-;9349:29;9371:6;9349:29;:::i;:::-;9344:3;9340:39;9333:46;;9113:272;;;;;:::o;9391:377::-;;9525:39;9558:5;9525:39;:::i;:::-;9580:89;9662:6;9657:3;9580:89;:::i;:::-;9573:96;;9678:52;9723:6;9718:3;9711:4;9704:5;9700:16;9678:52;:::i;:::-;9755:6;9750:3;9746:16;9739:23;;9501:267;;;;;:::o;9774:330::-;;9937:67;10001:2;9996:3;9937:67;:::i;:::-;9930:74;;10034:34;10030:1;10025:3;10021:11;10014:55;10095:2;10090:3;10086:12;10079:19;;9920:184;;;:::o;10110:375::-;;10273:67;10337:2;10332:3;10273:67;:::i;:::-;10266:74;;10370:34;10366:1;10361:3;10357:11;10350:55;10436:13;10431:2;10426:3;10422:12;10415:35;10476:2;10471:3;10467:12;10460:19;;10256:229;;;:::o;10491:382::-;;10654:67;10718:2;10713:3;10654:67;:::i;:::-;10647:74;;10751:34;10747:1;10742:3;10738:11;10731:55;10817:20;10812:2;10807:3;10803:12;10796:42;10864:2;10859:3;10855:12;10848:19;;10637:236;;;:::o;10879:370::-;;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11139:34;11135:1;11130:3;11126:11;11119:55;11205:8;11200:2;11195:3;11191:12;11184:30;11240:2;11235:3;11231:12;11224:19;;11025:224;;;:::o;11255:326::-;;11418:67;11482:2;11477:3;11418:67;:::i;:::-;11411:74;;11515:30;11511:1;11506:3;11502:11;11495:51;11572:2;11567:3;11563:12;11556:19;;11401:180;;;:::o;11587:312::-;;11750:67;11814:2;11809:3;11750:67;:::i;:::-;11743:74;;11847:16;11843:1;11838:3;11834:11;11827:37;11890:2;11885:3;11881:12;11874:19;;11733:166;;;:::o;11905:368::-;;12068:67;12132:2;12127:3;12068:67;:::i;:::-;12061:74;;12165:34;12161:1;12156:3;12152:11;12145:55;12231:6;12226:2;12221:3;12217:12;12210:28;12264:2;12259:3;12255:12;12248:19;;12051:222;;;:::o;12279:323::-;;12442:67;12506:2;12501:3;12442:67;:::i;:::-;12435:74;;12539:27;12535:1;12530:3;12526:11;12519:48;12593:2;12588:3;12584:12;12577:19;;12425:177;;;:::o;12608:376::-;;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12868:34;12864:1;12859:3;12855:11;12848:55;12934:14;12929:2;12924:3;12920:12;12913:36;12975:2;12970:3;12966:12;12959:19;;12754:230;;;:::o;12990:373::-;;13153:67;13217:2;13212:3;13153:67;:::i;:::-;13146:74;;13250:34;13246:1;13241:3;13237:11;13230:55;13316:11;13311:2;13306:3;13302:12;13295:33;13354:2;13349:3;13345:12;13338:19;;13136:227;;;:::o;13369:327::-;;13532:67;13596:2;13591:3;13532:67;:::i;:::-;13525:74;;13629:31;13625:1;13620:3;13616:11;13609:52;13687:2;13682:3;13678:12;13671:19;;13515:181;;;:::o;13702:319::-;;13865:67;13929:2;13924:3;13865:67;:::i;:::-;13858:74;;13962:23;13958:1;13953:3;13949:11;13942:44;14012:2;14007:3;14003:12;13996:19;;13848:173;;;:::o;14027:388::-;;14190:67;14254:2;14249:3;14190:67;:::i;:::-;14183:74;;14287:34;14283:1;14278:3;14274:11;14267:55;14353:26;14348:2;14343:3;14339:12;14332:48;14406:2;14401:3;14397:12;14390:19;;14173:242;;;:::o;14421:374::-;;14584:67;14648:2;14643:3;14584:67;:::i;:::-;14577:74;;14681:34;14677:1;14672:3;14668:11;14661:55;14747:12;14742:2;14737:3;14733:12;14726:34;14786:2;14781:3;14777:12;14770:19;;14567:228;;;:::o;14801:373::-;;14964:67;15028:2;15023:3;14964:67;:::i;:::-;14957:74;;15061:34;15057:1;15052:3;15048:11;15041:55;15127:11;15122:2;15117:3;15113:12;15106:33;15165:2;15160:3;15156:12;15149:19;;14947:227;;;:::o;15180:323::-;;15343:67;15407:2;15402:3;15343:67;:::i;:::-;15336:74;;15440:27;15436:1;15431:3;15427:11;15420:48;15494:2;15489:3;15485:12;15478:19;;15326:177;;;:::o;15509:330::-;;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15769:34;15765:1;15760:3;15756:11;15749:55;15830:2;15825:3;15821:12;15814:19;;15655:184;;;:::o;15845:385::-;;16008:67;16072:2;16067:3;16008:67;:::i;:::-;16001:74;;16105:34;16101:1;16096:3;16092:11;16085:55;16171:23;16166:2;16161:3;16157:12;16150:45;16221:2;16216:3;16212:12;16205:19;;15991:239;;;:::o;16236:322::-;;16399:67;16463:2;16458:3;16399:67;:::i;:::-;16392:74;;16496:26;16492:1;16487:3;16483:11;16476:47;16549:2;16544:3;16540:12;16533:19;;16382:176;;;:::o;16564:376::-;;16727:67;16791:2;16786:3;16727:67;:::i;:::-;16720:74;;16824:34;16820:1;16815:3;16811:11;16804:55;16890:14;16885:2;16880:3;16876:12;16869:36;16931:2;16926:3;16922:12;16915:19;;16710:230;;;:::o;16946:330::-;;17109:67;17173:2;17168:3;17109:67;:::i;:::-;17102:74;;17206:34;17202:1;17197:3;17193:11;17186:55;17267:2;17262:3;17258:12;17251:19;;17092:184;;;:::o;17282:373::-;;17445:67;17509:2;17504:3;17445:67;:::i;:::-;17438:74;;17542:34;17538:1;17533:3;17529:11;17522:55;17608:11;17603:2;17598:3;17594:12;17587:33;17646:2;17641:3;17637:12;17630:19;;17428:227;;;:::o;17661:379::-;;17824:67;17888:2;17883:3;17824:67;:::i;:::-;17817:74;;17921:34;17917:1;17912:3;17908:11;17901:55;17987:17;17982:2;17977:3;17973:12;17966:39;18031:2;18026:3;18022:12;18015:19;;17807:233;;;:::o;18046:365::-;;18209:67;18273:2;18268:3;18209:67;:::i;:::-;18202:74;;18306:34;18302:1;18297:3;18293:11;18286:55;18372:3;18367:2;18362:3;18358:12;18351:25;18402:2;18397:3;18393:12;18386:19;;18192:219;;;:::o;18417:330::-;;18580:67;18644:2;18639:3;18580:67;:::i;:::-;18573:74;;18677:34;18673:1;18668:3;18664:11;18657:55;18738:2;18733:3;18729:12;18722:19;;18563:184;;;:::o;18753:381::-;;18916:67;18980:2;18975:3;18916:67;:::i;:::-;18909:74;;19013:34;19009:1;19004:3;19000:11;18993:55;19079:19;19074:2;19069:3;19065:12;19058:41;19125:2;19120:3;19116:12;19109:19;;18899:235;;;:::o;19140:375::-;;19303:67;19367:2;19362:3;19303:67;:::i;:::-;19296:74;;19400:34;19396:1;19391:3;19387:11;19380:55;19466:13;19461:2;19456:3;19452:12;19445:35;19506:2;19501:3;19497:12;19490:19;;19286:229;;;:::o;19521:376::-;;19684:67;19748:2;19743:3;19684:67;:::i;:::-;19677:74;;19781:34;19777:1;19772:3;19768:11;19761:55;19847:14;19842:2;19837:3;19833:12;19826:36;19888:2;19883:3;19879:12;19872:19;;19667:230;;;:::o;19903:319::-;;20066:67;20130:2;20125:3;20066:67;:::i;:::-;20059:74;;20163:23;20159:1;20154:3;20150:11;20143:44;20213:2;20208:3;20204:12;20197:19;;20049:173;;;:::o;20228:324::-;;20391:67;20455:2;20450:3;20391:67;:::i;:::-;20384:74;;20488:28;20484:1;20479:3;20475:11;20468:49;20543:2;20538:3;20534:12;20527:19;;20374:178;;;:::o;20558:357::-;;20739:85;20821:2;20816:3;20739:85;:::i;:::-;20732:92;;20854:25;20850:1;20845:3;20841:11;20834:46;20906:2;20901:3;20897:12;20890:19;;20722:193;;;:::o;20921:318::-;;21084:67;21148:2;21143:3;21084:67;:::i;:::-;21077:74;;21181:22;21177:1;21172:3;21168:11;21161:43;21230:2;21225:3;21221:12;21214:19;;21067:172;;;:::o;21245:351::-;;21426:85;21508:2;21503:3;21426:85;:::i;:::-;21419:92;;21541:19;21537:1;21532:3;21528:11;21521:40;21587:2;21582:3;21578:12;21571:19;;21409:187;;;:::o;21602:379::-;;21765:67;21829:2;21824:3;21765:67;:::i;:::-;21758:74;;21862:34;21858:1;21853:3;21849:11;21842:55;21928:17;21923:2;21918:3;21914:12;21907:39;21972:2;21967:3;21963:12;21956:19;;21748:233;;;:::o;21987:115::-;22072:23;22089:5;22072:23;:::i;:::-;22067:3;22060:36;22050:52;;:::o;22108:118::-;22195:24;22213:5;22195:24;:::i;:::-;22190:3;22183:37;22173:53;;:::o;22232:115::-;22317:23;22334:5;22317:23;:::i;:::-;22312:3;22305:36;22295:52;;:::o;22353:435::-;;22555:95;22646:3;22637:6;22555:95;:::i;:::-;22548:102;;22667:95;22758:3;22749:6;22667:95;:::i;:::-;22660:102;;22779:3;22772:10;;22537:251;;;;;:::o;22794:967::-;;23198:148;23342:3;23198:148;:::i;:::-;23191:155;;23363:95;23454:3;23445:6;23363:95;:::i;:::-;23356:102;;23475:148;23619:3;23475:148;:::i;:::-;23468:155;;23640:95;23731:3;23722:6;23640:95;:::i;:::-;23633:102;;23752:3;23745:10;;23180:581;;;;;:::o;23767:222::-;;23898:2;23887:9;23883:18;23875:26;;23911:71;23979:1;23968:9;23964:17;23955:6;23911:71;:::i;:::-;23865:124;;;;:::o;23995:640::-;;24228:3;24217:9;24213:19;24205:27;;24242:71;24310:1;24299:9;24295:17;24286:6;24242:71;:::i;:::-;24323:72;24391:2;24380:9;24376:18;24367:6;24323:72;:::i;:::-;24405;24473:2;24462:9;24458:18;24449:6;24405:72;:::i;:::-;24524:9;24518:4;24514:20;24509:2;24498:9;24494:18;24487:48;24552:76;24623:4;24614:6;24552:76;:::i;:::-;24544:84;;24195:440;;;;;;;:::o;24641:210::-;;24766:2;24755:9;24751:18;24743:26;;24779:65;24841:1;24830:9;24826:17;24817:6;24779:65;:::i;:::-;24733:118;;;;:::o;24857:222::-;;24988:2;24977:9;24973:18;24965:26;;25001:71;25069:1;25058:9;25054:17;25045:6;25001:71;:::i;:::-;24955:124;;;;:::o;25085:313::-;;25236:2;25225:9;25221:18;25213:26;;25285:9;25279:4;25275:20;25271:1;25260:9;25256:17;25249:47;25313:78;25386:4;25377:6;25313:78;:::i;:::-;25305:86;;25203:195;;;;:::o;25404:419::-;;25608:2;25597:9;25593:18;25585:26;;25657:9;25651:4;25647:20;25643:1;25632:9;25628:17;25621:47;25685:131;25811:4;25685:131;:::i;:::-;25677:139;;25575:248;;;:::o;25829:419::-;;26033:2;26022:9;26018:18;26010:26;;26082:9;26076:4;26072:20;26068:1;26057:9;26053:17;26046:47;26110:131;26236:4;26110:131;:::i;:::-;26102:139;;26000:248;;;:::o;26254:419::-;;26458:2;26447:9;26443:18;26435:26;;26507:9;26501:4;26497:20;26493:1;26482:9;26478:17;26471:47;26535:131;26661:4;26535:131;:::i;:::-;26527:139;;26425:248;;;:::o;26679:419::-;;26883:2;26872:9;26868:18;26860:26;;26932:9;26926:4;26922:20;26918:1;26907:9;26903:17;26896:47;26960:131;27086:4;26960:131;:::i;:::-;26952:139;;26850:248;;;:::o;27104:419::-;;27308:2;27297:9;27293:18;27285:26;;27357:9;27351:4;27347:20;27343:1;27332:9;27328:17;27321:47;27385:131;27511:4;27385:131;:::i;:::-;27377:139;;27275:248;;;:::o;27529:419::-;;27733:2;27722:9;27718:18;27710:26;;27782:9;27776:4;27772:20;27768:1;27757:9;27753:17;27746:47;27810:131;27936:4;27810:131;:::i;:::-;27802:139;;27700:248;;;:::o;27954:419::-;;28158:2;28147:9;28143:18;28135:26;;28207:9;28201:4;28197:20;28193:1;28182:9;28178:17;28171:47;28235:131;28361:4;28235:131;:::i;:::-;28227:139;;28125:248;;;:::o;28379:419::-;;28583:2;28572:9;28568:18;28560:26;;28632:9;28626:4;28622:20;28618:1;28607:9;28603:17;28596:47;28660:131;28786:4;28660:131;:::i;:::-;28652:139;;28550:248;;;:::o;28804:419::-;;29008:2;28997:9;28993:18;28985:26;;29057:9;29051:4;29047:20;29043:1;29032:9;29028:17;29021:47;29085:131;29211:4;29085:131;:::i;:::-;29077:139;;28975:248;;;:::o;29229:419::-;;29433:2;29422:9;29418:18;29410:26;;29482:9;29476:4;29472:20;29468:1;29457:9;29453:17;29446:47;29510:131;29636:4;29510:131;:::i;:::-;29502:139;;29400:248;;;:::o;29654:419::-;;29858:2;29847:9;29843:18;29835:26;;29907:9;29901:4;29897:20;29893:1;29882:9;29878:17;29871:47;29935:131;30061:4;29935:131;:::i;:::-;29927:139;;29825:248;;;:::o;30079:419::-;;30283:2;30272:9;30268:18;30260:26;;30332:9;30326:4;30322:20;30318:1;30307:9;30303:17;30296:47;30360:131;30486:4;30360:131;:::i;:::-;30352:139;;30250:248;;;:::o;30504:419::-;;30708:2;30697:9;30693:18;30685:26;;30757:9;30751:4;30747:20;30743:1;30732:9;30728:17;30721:47;30785:131;30911:4;30785:131;:::i;:::-;30777:139;;30675:248;;;:::o;30929:419::-;;31133:2;31122:9;31118:18;31110:26;;31182:9;31176:4;31172:20;31168:1;31157:9;31153:17;31146:47;31210:131;31336:4;31210:131;:::i;:::-;31202:139;;31100:248;;;:::o;31354:419::-;;31558:2;31547:9;31543:18;31535:26;;31607:9;31601:4;31597:20;31593:1;31582:9;31578:17;31571:47;31635:131;31761:4;31635:131;:::i;:::-;31627:139;;31525:248;;;:::o;31779:419::-;;31983:2;31972:9;31968:18;31960:26;;32032:9;32026:4;32022:20;32018:1;32007:9;32003:17;31996:47;32060:131;32186:4;32060:131;:::i;:::-;32052:139;;31950:248;;;:::o;32204:419::-;;32408:2;32397:9;32393:18;32385:26;;32457:9;32451:4;32447:20;32443:1;32432:9;32428:17;32421:47;32485:131;32611:4;32485:131;:::i;:::-;32477:139;;32375:248;;;:::o;32629:419::-;;32833:2;32822:9;32818:18;32810:26;;32882:9;32876:4;32872:20;32868:1;32857:9;32853:17;32846:47;32910:131;33036:4;32910:131;:::i;:::-;32902:139;;32800:248;;;:::o;33054:419::-;;33258:2;33247:9;33243:18;33235:26;;33307:9;33301:4;33297:20;33293:1;33282:9;33278:17;33271:47;33335:131;33461:4;33335:131;:::i;:::-;33327:139;;33225:248;;;:::o;33479:419::-;;33683:2;33672:9;33668:18;33660:26;;33732:9;33726:4;33722:20;33718:1;33707:9;33703:17;33696:47;33760:131;33886:4;33760:131;:::i;:::-;33752:139;;33650:248;;;:::o;33904:419::-;;34108:2;34097:9;34093:18;34085:26;;34157:9;34151:4;34147:20;34143:1;34132:9;34128:17;34121:47;34185:131;34311:4;34185:131;:::i;:::-;34177:139;;34075:248;;;:::o;34329:419::-;;34533:2;34522:9;34518:18;34510:26;;34582:9;34576:4;34572:20;34568:1;34557:9;34553:17;34546:47;34610:131;34736:4;34610:131;:::i;:::-;34602:139;;34500:248;;;:::o;34754:419::-;;34958:2;34947:9;34943:18;34935:26;;35007:9;35001:4;34997:20;34993:1;34982:9;34978:17;34971:47;35035:131;35161:4;35035:131;:::i;:::-;35027:139;;34925:248;;;:::o;35179:419::-;;35383:2;35372:9;35368:18;35360:26;;35432:9;35426:4;35422:20;35418:1;35407:9;35403:17;35396:47;35460:131;35586:4;35460:131;:::i;:::-;35452:139;;35350:248;;;:::o;35604:419::-;;35808:2;35797:9;35793:18;35785:26;;35857:9;35851:4;35847:20;35843:1;35832:9;35828:17;35821:47;35885:131;36011:4;35885:131;:::i;:::-;35877:139;;35775:248;;;:::o;36029:419::-;;36233:2;36222:9;36218:18;36210:26;;36282:9;36276:4;36272:20;36268:1;36257:9;36253:17;36246:47;36310:131;36436:4;36310:131;:::i;:::-;36302:139;;36200:248;;;:::o;36454:419::-;;36658:2;36647:9;36643:18;36635:26;;36707:9;36701:4;36697:20;36693:1;36682:9;36678:17;36671:47;36735:131;36861:4;36735:131;:::i;:::-;36727:139;;36625:248;;;:::o;36879:419::-;;37083:2;37072:9;37068:18;37060:26;;37132:9;37126:4;37122:20;37118:1;37107:9;37103:17;37096:47;37160:131;37286:4;37160:131;:::i;:::-;37152:139;;37050:248;;;:::o;37304:419::-;;37508:2;37497:9;37493:18;37485:26;;37557:9;37551:4;37547:20;37543:1;37532:9;37528:17;37521:47;37585:131;37711:4;37585:131;:::i;:::-;37577:139;;37475:248;;;:::o;37729:419::-;;37933:2;37922:9;37918:18;37910:26;;37982:9;37976:4;37972:20;37968:1;37957:9;37953:17;37946:47;38010:131;38136:4;38010:131;:::i;:::-;38002:139;;37900:248;;;:::o;38154:419::-;;38358:2;38347:9;38343:18;38335:26;;38407:9;38401:4;38397:20;38393:1;38382:9;38378:17;38371:47;38435:131;38561:4;38435:131;:::i;:::-;38427:139;;38325:248;;;:::o;38579:419::-;;38783:2;38772:9;38768:18;38760:26;;38832:9;38826:4;38822:20;38818:1;38807:9;38803:17;38796:47;38860:131;38986:4;38860:131;:::i;:::-;38852:139;;38750:248;;;:::o;39004:218::-;;39133:2;39122:9;39118:18;39110:26;;39146:69;39212:1;39201:9;39197:17;39188:6;39146:69;:::i;:::-;39100:122;;;;:::o;39228:222::-;;39359:2;39348:9;39344:18;39336:26;;39372:71;39440:1;39429:9;39425:17;39416:6;39372:71;:::i;:::-;39326:124;;;;:::o;39456:218::-;;39585:2;39574:9;39570:18;39562:26;;39598:69;39664:1;39653:9;39649:17;39640:6;39598:69;:::i;:::-;39552:122;;;;:::o;39680:283::-;;39746:2;39740:9;39730:19;;39788:4;39780:6;39776:17;39895:6;39883:10;39880:22;39859:18;39847:10;39844:34;39841:62;39838:2;;;39906:18;;:::i;:::-;39838:2;39946:10;39942:2;39935:22;39720:243;;;;:::o;39969:311::-;;40136:18;40128:6;40125:30;40122:2;;;40158:18;;:::i;:::-;40122:2;40208:4;40200:6;40196:17;40188:25;;40268:4;40262;40258:15;40250:23;;40051:229;;;:::o;40286:331::-;;40437:18;40429:6;40426:30;40423:2;;;40459:18;;:::i;:::-;40423:2;40544:4;40540:9;40533:4;40525:6;40521:17;40517:33;40509:41;;40605:4;40599;40595:15;40587:23;;40352:265;;;:::o;40623:332::-;;40775:18;40767:6;40764:30;40761:2;;;40797:18;;:::i;:::-;40761:2;40882:4;40878:9;40871:4;40863:6;40859:17;40855:33;40847:41;;40943:4;40937;40933:15;40925:23;;40690:265;;;:::o;40961:98::-;;41046:5;41040:12;41030:22;;41019:40;;;:::o;41065:99::-;;41151:5;41145:12;41135:22;;41124:40;;;:::o;41170:168::-;;41287:6;41282:3;41275:19;41327:4;41322:3;41318:14;41303:29;;41265:73;;;;:::o;41344:169::-;;41462:6;41457:3;41450:19;41502:4;41497:3;41493:14;41478:29;;41440:73;;;;:::o;41519:148::-;;41658:3;41643:18;;41633:34;;;;:::o;41673:305::-;;41732:20;41750:1;41732:20;:::i;:::-;41727:25;;41766:20;41784:1;41766:20;:::i;:::-;41761:25;;41920:1;41852:66;41848:74;41845:1;41842:81;41839:2;;;41926:18;;:::i;:::-;41839:2;41970:1;41967;41963:9;41956:16;;41717:261;;;;:::o;41984:185::-;;42041:20;42059:1;42041:20;:::i;:::-;42036:25;;42075:20;42093:1;42075:20;:::i;:::-;42070:25;;42114:1;42104:2;;42119:18;;:::i;:::-;42104:2;42161:1;42158;42154:9;42149:14;;42026:143;;;;:::o;42175:348::-;;42238:20;42256:1;42238:20;:::i;:::-;42233:25;;42272:20;42290:1;42272:20;:::i;:::-;42267:25;;42460:1;42392:66;42388:74;42385:1;42382:81;42377:1;42370:9;42363:17;42359:105;42356:2;;;42467:18;;:::i;:::-;42356:2;42515:1;42512;42508:9;42497:20;;42223:300;;;;:::o;42529:191::-;;42589:20;42607:1;42589:20;:::i;:::-;42584:25;;42623:20;42641:1;42623:20;:::i;:::-;42618:25;;42662:1;42659;42656:8;42653:2;;;42667:18;;:::i;:::-;42653:2;42712:1;42709;42705:9;42697:17;;42574:146;;;;:::o;42726:96::-;;42792:24;42810:5;42792:24;:::i;:::-;42781:35;;42771:51;;;:::o;42828:90::-;;42905:5;42898:13;42891:21;42880:32;;42870:48;;;:::o;42924:77::-;;42990:5;42979:16;;42969:32;;;:::o;43007:149::-;;43083:66;43076:5;43072:78;43061:89;;43051:105;;;:::o;43162:89::-;;43238:6;43231:5;43227:18;43216:29;;43206:45;;;:::o;43257:126::-;;43334:42;43327:5;43323:54;43312:65;;43302:81;;;:::o;43389:77::-;;43455:5;43444:16;;43434:32;;;:::o;43472:101::-;;43548:18;43541:5;43537:30;43526:41;;43516:57;;;:::o;43579:154::-;43663:6;43658:3;43653;43640:30;43725:1;43716:6;43711:3;43707:16;43700:27;43630:103;;;:::o;43739:307::-;43807:1;43817:113;43831:6;43828:1;43825:13;43817:113;;;43916:1;43911:3;43907:11;43901:18;43897:1;43892:3;43888:11;43881:39;43853:2;43850:1;43846:10;43841:15;;43817:113;;;43948:6;43945:1;43942:13;43939:2;;;44028:1;44019:6;44014:3;44010:16;44003:27;43939:2;43788:258;;;;:::o;44052:171::-;;44114:24;44132:5;44114:24;:::i;:::-;44105:33;;44160:4;44153:5;44150:15;44147:2;;;44168:18;;:::i;:::-;44147:2;44215:1;44208:5;44204:13;44197:20;;44095:128;;;:::o;44229:320::-;;44310:1;44304:4;44300:12;44290:22;;44357:1;44351:4;44347:12;44378:18;44368:2;;44434:4;44426:6;44422:17;44412:27;;44368:2;44496;44488:6;44485:14;44465:18;44462:38;44459:2;;;44515:18;;:::i;:::-;44459:2;44280:269;;;;:::o;44555:233::-;;44617:24;44635:5;44617:24;:::i;:::-;44608:33;;44663:66;44656:5;44653:77;44650:2;;;44733:18;;:::i;:::-;44650:2;44780:1;44773:5;44769:13;44762:20;;44598:190;;;:::o;44794:176::-;;44843:20;44861:1;44843:20;:::i;:::-;44838:25;;44877:20;44895:1;44877:20;:::i;:::-;44872:25;;44916:1;44906:2;;44921:18;;:::i;:::-;44906:2;44962:1;44959;44955:9;44950:14;;44828:142;;;;:::o;44976:180::-;45024:77;45021:1;45014:88;45121:4;45118:1;45111:15;45145:4;45142:1;45135:15;45162:180;45210:77;45207:1;45200:88;45307:4;45304:1;45297:15;45331:4;45328:1;45321:15;45348:180;45396:77;45393:1;45386:88;45493:4;45490:1;45483:15;45517:4;45514:1;45507:15;45534:180;45582:77;45579:1;45572:88;45679:4;45676:1;45669:15;45703:4;45700:1;45693:15;45720:102;;45812:2;45808:7;45803:2;45796:5;45792:14;45788:28;45778:38;;45768:54;;;:::o;45828:122::-;45901:24;45919:5;45901:24;:::i;:::-;45894:5;45891:35;45881:2;;45940:1;45937;45930:12;45881:2;45871:79;:::o;45956:116::-;46026:21;46041:5;46026:21;:::i;:::-;46019:5;46016:32;46006:2;;46062:1;46059;46052:12;46006:2;45996:76;:::o;46078:122::-;46151:24;46169:5;46151:24;:::i;:::-;46144:5;46141:35;46131:2;;46190:1;46187;46180:12;46131:2;46121:79;:::o;46206:120::-;46278:23;46295:5;46278:23;:::i;:::-;46271:5;46268:34;46258:2;;46316:1;46313;46306:12;46258:2;46248:78;:::o;46332:122::-;46405:24;46423:5;46405:24;:::i;:::-;46398:5;46395:35;46385:2;;46444:1;46441;46434:12;46385:2;46375:79;:::o

Swarm Source

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