ETH Price: $2,982.45 (-4.79%)
Gas: 2 Gwei

Token

DZMILITARY (DZM)
 

Overview

Max Total Supply

333 DZM

Holders

261

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 DZM
0x4eb173b2a73875921facbf9e048c4b71ec8c8818
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:
DZMilitary

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

//  ____ _______  __ 
// |  _ \__  /  \/  |
// | | | |/ /| |\/| |
// | |_| / /_| |  | |
// |____/____|_|  |_|
//                

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}    

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


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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly {
            // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

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

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

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

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

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

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

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 offset;
            do {
                emit Transfer(address(0), to, startTokenId + offset++);
            } while (offset < quantity);

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

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

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

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

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

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

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

contract StartTokenIdHelper {
    uint256 public startTokenId;

    constructor(uint256 startTokenId_) {
        startTokenId = startTokenId_;
    }
}

contract DZMilitary is ERC721A, Ownable {
  using Strings for uint256;

  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.02 ether;
  uint256 public maxSupply = 333;
  uint256 public maxMintAmount = 1;
  bool public paused = true;
  bool public revealed = false;
  string public notRevealedUri;
  uint public maxAmountPerWallet = 1;
  uint public maxWalletHold = 1;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) 
    ERC721A(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  function _beforeTokenTransfers(address from, address to, uint256 startTokenId, uint256 quantity) internal override {
    require(balanceOf(msg.sender) < maxWalletHold, "Wallet max amount overflow");
    super._beforeTokenTransfers(from, to, startTokenId, quantity);
  } 

  // public
  function getDZsoldier(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);
    require(balanceOf(msg.sender) < maxAmountPerWallet, "Wallet max amount overflow");

    if (msg.sender != owner()) {
      require(msg.value >= cost * _mintAmount);
    }

    _safeMint(msg.sender, _mintAmount);
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return bytes(notRevealedUri).length > 0
            ? string(abi.encodePacked(notRevealedUri, tokenId.toString(), baseExtension))
            : "";
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

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

  function setMaxAmountPerWallet(uint256 _maxAmountPerWallet) public onlyOwner {
    maxAmountPerWallet = _maxAmountPerWallet;
  }

  function setMaxWalletHolding(uint256 _maxHoldingPerWallet) public onlyOwner {
    maxWalletHold = _maxHoldingPerWallet;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"getDZsoldier","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletHold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxAmountPerWallet","type":"uint256"}],"name":"setMaxAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxHoldingPerWallet","type":"uint256"}],"name":"setMaxWalletHolding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908051906020019062000051929190620003ca565b5066470de4df820000600b5561014d600c556001600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff02191690831515021790555060016010556001601155348015620000b557600080fd5b5060405162003c8738038062003c878339818101604052810190620000db9190620004ec565b83838160029080519060200190620000f5929190620003ca565b5080600390805190602001906200010e929190620003ca565b506200011f6200017360201b60201c565b6000819055505050620001476200013b6200017c60201b60201c565b6200018460201b60201c565b62000158826200024a60201b60201c565b6200016981620002f560201b60201c565b50505050620007af565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200025a6200017c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000280620003a060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d090620005e3565b60405180910390fd5b8060099080519060200190620002f1929190620003ca565b5050565b620003056200017c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200032b620003a060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000384576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037b90620005e3565b60405180910390fd5b80600f90805190602001906200039c929190620003ca565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003d890620006ab565b90600052602060002090601f016020900481019282620003fc576000855562000448565b82601f106200041757805160ff191683800117855562000448565b8280016001018555821562000448579182015b82811115620004475782518255916020019190600101906200042a565b5b5090506200045791906200045b565b5090565b5b80821115620004765760008160009055506001016200045c565b5090565b6000620004916200048b846200062e565b62000605565b905082815260208101848484011115620004aa57600080fd5b620004b784828562000675565b509392505050565b600082601f830112620004d157600080fd5b8151620004e38482602086016200047a565b91505092915050565b600080600080608085870312156200050357600080fd5b600085015167ffffffffffffffff8111156200051e57600080fd5b6200052c87828801620004bf565b945050602085015167ffffffffffffffff8111156200054a57600080fd5b6200055887828801620004bf565b935050604085015167ffffffffffffffff8111156200057657600080fd5b6200058487828801620004bf565b925050606085015167ffffffffffffffff811115620005a257600080fd5b620005b087828801620004bf565b91505092959194509250565b6000620005cb60208362000664565b9150620005d88262000786565b602082019050919050565b60006020820190508181036000830152620005fe81620005bc565b9050919050565b60006200061162000624565b90506200061f8282620006e1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200064c576200064b62000746565b5b620006578262000775565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200069557808201518184015260208101905062000678565b83811115620006a5576000848401525b50505050565b60006002820490506001821680620006c457607f821691505b60208210811415620006db57620006da62000717565b5b50919050565b620006ec8262000775565b810181811067ffffffffffffffff821117156200070e576200070d62000746565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6134c880620007bf6000396000f3fe60806040526004361061021a5760003560e01c80635c975abb11610123578063a475b5dd116100ab578063da3ef23f1161006f578063da3ef23f1461076b578063dea6c6f714610794578063e985e9c5146107bf578063f2c4ce1e146107fc578063f2fde38b146108255761021a565b8063a475b5dd14610698578063b88d4fde146106af578063c6682862146106d8578063c87b56dd14610703578063d5abeb01146107405761021a565b80637f00c7a6116100f25780637f00c7a6146105c757806385266ec6146105f05780638da5cb5b1461061957806395d89b4114610644578063a22cb4651461066f5761021a565b80635c975abb1461050b5780636352211e1461053657806370a0823114610573578063715018a6146105b05761021a565b806323b872dd116101a657806342842e0e1161017557806342842e0e1461043c57806344a0d68a146104655780634fb2343a1461048e57806351830227146104b757806355f804b3146104e25761021a565b806323b872dd146103c257806336db7129146103eb5780633ccfd60b146104165780633cf6bb39146104205761021a565b8063081c8c44116101ed578063081c8c44146102ed578063095ea7b31461031857806313faede61461034157806318160ddd1461036c578063239c70ae146103975761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612a74565b61084e565b6040516102539190612e0c565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612a4b565b6108e0565b005b34801561029157600080fd5b5061029a610979565b6040516102a79190612e27565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190612b07565b610a0b565b6040516102e49190612da5565b60405180910390f35b3480156102f957600080fd5b50610302610a87565b60405161030f9190612e27565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612a0f565b610b15565b005b34801561034d57600080fd5b50610356610c56565b6040516103639190612ec9565b60405180910390f35b34801561037857600080fd5b50610381610c5c565b60405161038e9190612ec9565b60405180910390f35b3480156103a357600080fd5b506103ac610c73565b6040516103b99190612ec9565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190612909565b610c79565b005b3480156103f757600080fd5b50610400610c89565b60405161040d9190612ec9565b60405180910390f35b61041e610c8f565b005b61043a60048036038101906104359190612b07565b610d8b565b005b34801561044857600080fd5b50610463600480360381019061045e9190612909565b610e96565b005b34801561047157600080fd5b5061048c60048036038101906104879190612b07565b610eb6565b005b34801561049a57600080fd5b506104b560048036038101906104b09190612b07565b610f3c565b005b3480156104c357600080fd5b506104cc610fc2565b6040516104d99190612e0c565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190612ac6565b610fd5565b005b34801561051757600080fd5b5061052061106b565b60405161052d9190612e0c565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612b07565b61107e565b60405161056a9190612da5565b60405180910390f35b34801561057f57600080fd5b5061059a600480360381019061059591906128a4565b611090565b6040516105a79190612ec9565b60405180910390f35b3480156105bc57600080fd5b506105c5611125565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190612b07565b6111ad565b005b3480156105fc57600080fd5b5061061760048036038101906106129190612b07565b611233565b005b34801561062557600080fd5b5061062e6112b9565b60405161063b9190612da5565b60405180910390f35b34801561065057600080fd5b506106596112e3565b6040516106669190612e27565b60405180910390f35b34801561067b57600080fd5b50610696600480360381019061069191906129d3565b611375565b005b3480156106a457600080fd5b506106ad6114ed565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190612958565b611586565b005b3480156106e457600080fd5b506106ed6115f9565b6040516106fa9190612e27565b60405180910390f35b34801561070f57600080fd5b5061072a60048036038101906107259190612b07565b611687565b6040516107379190612e27565b60405180910390f35b34801561074c57600080fd5b506107556117af565b6040516107629190612ec9565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190612ac6565b6117b5565b005b3480156107a057600080fd5b506107a961184b565b6040516107b69190612ec9565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e191906128cd565b611851565b6040516107f39190612e0c565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190612ac6565b6118e5565b005b34801561083157600080fd5b5061084c600480360381019061084791906128a4565b61197b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108e8611a73565b73ffffffffffffffffffffffffffffffffffffffff166109066112b9565b73ffffffffffffffffffffffffffffffffffffffff161461095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390612e89565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60606002805461098890613199565b80601f01602080910402602001604051908101604052809291908181526020018280546109b490613199565b8015610a015780601f106109d657610100808354040283529160200191610a01565b820191906000526020600020905b8154815290600101906020018083116109e457829003601f168201915b5050505050905090565b6000610a1682611a7b565b610a4c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610a9490613199565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac090613199565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b505050505081565b6000610b2082611ada565b90508073ffffffffffffffffffffffffffffffffffffffff16610b41611ba8565b73ffffffffffffffffffffffffffffffffffffffff1614610ba457610b6d81610b68611ba8565b611851565b610ba3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610c66611bb0565b6001546000540303905090565b600d5481565b610c84838383611bb9565b505050565b60105481565b610c97611a73565b73ffffffffffffffffffffffffffffffffffffffff16610cb56112b9565b73ffffffffffffffffffffffffffffffffffffffff1614610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290612e89565b60405180910390fd5b6000610d156112b9565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d3890612d90565b60006040518083038185875af1925050503d8060008114610d75576040519150601f19603f3d011682016040523d82523d6000602084013e610d7a565b606091505b5050905080610d8857600080fd5b50565b6000610d95610c5c565b9050600e60009054906101000a900460ff1615610db157600080fd5b60008211610dbe57600080fd5b600d54821115610dcd57600080fd5b600c548282610ddc9190612fce565b1115610de757600080fd5b601054610df333611090565b10610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90612ea9565b60405180910390fd5b610e3b6112b9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e885781600b54610e7b9190613055565b341015610e8757600080fd5b5b610e923383611f81565b5050565b610eb183838360405180602001604052806000815250611586565b505050565b610ebe611a73565b73ffffffffffffffffffffffffffffffffffffffff16610edc6112b9565b73ffffffffffffffffffffffffffffffffffffffff1614610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990612e89565b60405180910390fd5b80600b8190555050565b610f44611a73565b73ffffffffffffffffffffffffffffffffffffffff16610f626112b9565b73ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90612e89565b60405180910390fd5b8060118190555050565b600e60019054906101000a900460ff1681565b610fdd611a73565b73ffffffffffffffffffffffffffffffffffffffff16610ffb6112b9565b73ffffffffffffffffffffffffffffffffffffffff1614611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890612e89565b60405180910390fd5b80600990805190602001906110679291906126c8565b5050565b600e60009054906101000a900460ff1681565b600061108982611ada565b9050919050565b60008061109c83611f9f565b14156110d4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61112d611a73565b73ffffffffffffffffffffffffffffffffffffffff1661114b6112b9565b73ffffffffffffffffffffffffffffffffffffffff16146111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890612e89565b60405180910390fd5b6111ab6000611fa9565b565b6111b5611a73565b73ffffffffffffffffffffffffffffffffffffffff166111d36112b9565b73ffffffffffffffffffffffffffffffffffffffff1614611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090612e89565b60405180910390fd5b80600d8190555050565b61123b611a73565b73ffffffffffffffffffffffffffffffffffffffff166112596112b9565b73ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690612e89565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112f290613199565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90613199565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b5050505050905090565b61137d611ba8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113ef611ba8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149c611ba8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e19190612e0c565b60405180910390a35050565b6114f5611a73565b73ffffffffffffffffffffffffffffffffffffffff166115136112b9565b73ffffffffffffffffffffffffffffffffffffffff1614611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090612e89565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b611591848484611bb9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115f3576115bc8484848461206f565b6115f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461160690613199565b80601f016020809104026020016040519081016040528092919081815260200182805461163290613199565b801561167f5780601f106116545761010080835404028352916020019161167f565b820191906000526020600020905b81548152906001019060200180831161166257829003601f168201915b505050505081565b606061169282611a7b565b6116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c890612e49565b60405180910390fd5b60001515600e60019054906101000a900460ff161515141561174e576000600f80546116fc90613199565b9050116117185760405180602001604052806000815250611747565b600f611723836121cf565b600a60405160200161173793929190612d5f565b6040516020818303038152906040525b90506117aa565b600061175861237c565b9050600081511161177857604051806020016040528060008152506117a6565b80611782846121cf565b600a60405160200161179693929190612d2e565b6040516020818303038152906040525b9150505b919050565b600c5481565b6117bd611a73565b73ffffffffffffffffffffffffffffffffffffffff166117db6112b9565b73ffffffffffffffffffffffffffffffffffffffff1614611831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182890612e89565b60405180910390fd5b80600a90805190602001906118479291906126c8565b5050565b60115481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118ed611a73565b73ffffffffffffffffffffffffffffffffffffffff1661190b6112b9565b73ffffffffffffffffffffffffffffffffffffffff1614611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890612e89565b60405180910390fd5b80600f90805190602001906119779291906126c8565b5050565b611983611a73565b73ffffffffffffffffffffffffffffffffffffffff166119a16112b9565b73ffffffffffffffffffffffffffffffffffffffff16146119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee90612e89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90612e69565b60405180910390fd5b611a7081611fa9565b50565b600033905090565b600081611a86611bb0565b11158015611a95575060005482105b8015611ad3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611ae9611bb0565b11611b7157600054811015611b705760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b6e575b6000811415611b64576004600083600190039350838152602001908152602001600020549050611b39565b8092505050611ba3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611bc482611ada565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c2b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611c84611ba8565b73ffffffffffffffffffffffffffffffffffffffff161480611cb35750611cb286611cad611ba8565b611851565b5b80611cf05750611cc1611ba8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611d29576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d3486611f9f565b1415611d6c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d79868686600161240e565b6000611d8483611f9f565b14611dc0576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611e8787611f9f565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611f11576000600185019050600060046000838152602001908152602001600020541415611f0f576000548114611f0e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f79868686600161246c565b505050505050565b611f9b828260405180602001604052806000815250612472565b5050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612095611ba8565b8786866040518563ffffffff1660e01b81526004016120b79493929190612dc0565b602060405180830381600087803b1580156120d157600080fd5b505af192505050801561210257506040513d601f19601f820116820180604052508101906120ff9190612a9d565b60015b61217c573d8060008114612132576040519150601f19603f3d011682016040523d82523d6000602084013e612137565b606091505b50600081511415612174576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612217576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612377565b600082905060005b60008214612249578080612232906131fc565b915050600a826122429190613024565b915061221f565b60008167ffffffffffffffff81111561228b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122bd5781602001600182028036833780820191505090505b5090505b60008514612370576001826122d691906130af565b9150600a856122e59190613245565b60306122f19190612fce565b60f81b81838151811061232d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123699190613024565b94506122c1565b8093505050505b919050565b60606009805461238b90613199565b80601f01602080910402602001604051908101604052809291908181526020018280546123b790613199565b80156124045780601f106123d957610100808354040283529160200191612404565b820191906000526020600020905b8154815290600101906020018083116123e757829003601f168201915b5050505050905090565b60115461241a33611090565b1061245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190612ea9565b60405180910390fd5b6124668484848461250f565b50505050565b50505050565b61247c8383612515565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461250a57600080549050600083820390505b6124bc600086838060010194508661206f565b6124f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124a957816000541461250757600080fd5b50505b505050565b50505050565b600080549050600061252684611f9f565b141561255e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612599576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125a6600084838561240e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161260b600184146126be565b901b60a042901b61261b85611f9f565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a482811061263757828201600081905550506126b9600084838561246c565b505050565b6000819050919050565b8280546126d490613199565b90600052602060002090601f0160209004810192826126f6576000855561273d565b82601f1061270f57805160ff191683800117855561273d565b8280016001018555821561273d579182015b8281111561273c578251825591602001919060010190612721565b5b50905061274a919061274e565b5090565b5b8082111561276757600081600090555060010161274f565b5090565b600061277e61277984612f09565b612ee4565b90508281526020810184848401111561279657600080fd5b6127a1848285613157565b509392505050565b60006127bc6127b784612f3a565b612ee4565b9050828152602081018484840111156127d457600080fd5b6127df848285613157565b509392505050565b6000813590506127f681613436565b92915050565b60008135905061280b8161344d565b92915050565b60008135905061282081613464565b92915050565b60008151905061283581613464565b92915050565b600082601f83011261284c57600080fd5b813561285c84826020860161276b565b91505092915050565b600082601f83011261287657600080fd5b81356128868482602086016127a9565b91505092915050565b60008135905061289e8161347b565b92915050565b6000602082840312156128b657600080fd5b60006128c4848285016127e7565b91505092915050565b600080604083850312156128e057600080fd5b60006128ee858286016127e7565b92505060206128ff858286016127e7565b9150509250929050565b60008060006060848603121561291e57600080fd5b600061292c868287016127e7565b935050602061293d868287016127e7565b925050604061294e8682870161288f565b9150509250925092565b6000806000806080858703121561296e57600080fd5b600061297c878288016127e7565b945050602061298d878288016127e7565b935050604061299e8782880161288f565b925050606085013567ffffffffffffffff8111156129bb57600080fd5b6129c78782880161283b565b91505092959194509250565b600080604083850312156129e657600080fd5b60006129f4858286016127e7565b9250506020612a05858286016127fc565b9150509250929050565b60008060408385031215612a2257600080fd5b6000612a30858286016127e7565b9250506020612a418582860161288f565b9150509250929050565b600060208284031215612a5d57600080fd5b6000612a6b848285016127fc565b91505092915050565b600060208284031215612a8657600080fd5b6000612a9484828501612811565b91505092915050565b600060208284031215612aaf57600080fd5b6000612abd84828501612826565b91505092915050565b600060208284031215612ad857600080fd5b600082013567ffffffffffffffff811115612af257600080fd5b612afe84828501612865565b91505092915050565b600060208284031215612b1957600080fd5b6000612b278482850161288f565b91505092915050565b612b39816130e3565b82525050565b612b48816130f5565b82525050565b6000612b5982612f80565b612b638185612f96565b9350612b73818560208601613166565b612b7c81613332565b840191505092915050565b6000612b9282612f8b565b612b9c8185612fb2565b9350612bac818560208601613166565b612bb581613332565b840191505092915050565b6000612bcb82612f8b565b612bd58185612fc3565b9350612be5818560208601613166565b80840191505092915050565b60008154612bfe81613199565b612c088186612fc3565b94506001821660008114612c235760018114612c3457612c67565b60ff19831686528186019350612c67565b612c3d85612f6b565b60005b83811015612c5f57815481890152600182019150602081019050612c40565b838801955050505b50505092915050565b6000612c7d603083612fb2565b9150612c8882613343565b604082019050919050565b6000612ca0602683612fb2565b9150612cab82613392565b604082019050919050565b6000612cc3602083612fb2565b9150612cce826133e1565b602082019050919050565b6000612ce6600083612fa7565b9150612cf18261340a565b600082019050919050565b6000612d09601a83612fb2565b9150612d148261340d565b602082019050919050565b612d288161314d565b82525050565b6000612d3a8286612bc0565b9150612d468285612bc0565b9150612d528284612bf1565b9150819050949350505050565b6000612d6b8286612bf1565b9150612d778285612bc0565b9150612d838284612bf1565b9150819050949350505050565b6000612d9b82612cd9565b9150819050919050565b6000602082019050612dba6000830184612b30565b92915050565b6000608082019050612dd56000830187612b30565b612de26020830186612b30565b612def6040830185612d1f565b8181036060830152612e018184612b4e565b905095945050505050565b6000602082019050612e216000830184612b3f565b92915050565b60006020820190508181036000830152612e418184612b87565b905092915050565b60006020820190508181036000830152612e6281612c70565b9050919050565b60006020820190508181036000830152612e8281612c93565b9050919050565b60006020820190508181036000830152612ea281612cb6565b9050919050565b60006020820190508181036000830152612ec281612cfc565b9050919050565b6000602082019050612ede6000830184612d1f565b92915050565b6000612eee612eff565b9050612efa82826131cb565b919050565b6000604051905090565b600067ffffffffffffffff821115612f2457612f23613303565b5b612f2d82613332565b9050602081019050919050565b600067ffffffffffffffff821115612f5557612f54613303565b5b612f5e82613332565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612fd98261314d565b9150612fe48361314d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561301957613018613276565b5b828201905092915050565b600061302f8261314d565b915061303a8361314d565b92508261304a576130496132a5565b5b828204905092915050565b60006130608261314d565b915061306b8361314d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130a4576130a3613276565b5b828202905092915050565b60006130ba8261314d565b91506130c58361314d565b9250828210156130d8576130d7613276565b5b828203905092915050565b60006130ee8261312d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613184578082015181840152602081019050613169565b83811115613193576000848401525b50505050565b600060028204905060018216806131b157607f821691505b602082108114156131c5576131c46132d4565b5b50919050565b6131d482613332565b810181811067ffffffffffffffff821117156131f3576131f2613303565b5b80604052505050565b60006132078261314d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561323a57613239613276565b5b600182019050919050565b60006132508261314d565b915061325b8361314d565b92508261326b5761326a6132a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f57616c6c6574206d617820616d6f756e74206f766572666c6f77000000000000600082015250565b61343f816130e3565b811461344a57600080fd5b50565b613456816130f5565b811461346157600080fd5b50565b61346d81613101565b811461347857600080fd5b50565b6134848161314d565b811461348f57600080fd5b5056fea264697066735822122095807188bf231238cbe3acde22e97d58328c2b58f5a01e2fa0a9967cb66d6c1a64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a445a4d494c4954415259000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003445a4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80635c975abb11610123578063a475b5dd116100ab578063da3ef23f1161006f578063da3ef23f1461076b578063dea6c6f714610794578063e985e9c5146107bf578063f2c4ce1e146107fc578063f2fde38b146108255761021a565b8063a475b5dd14610698578063b88d4fde146106af578063c6682862146106d8578063c87b56dd14610703578063d5abeb01146107405761021a565b80637f00c7a6116100f25780637f00c7a6146105c757806385266ec6146105f05780638da5cb5b1461061957806395d89b4114610644578063a22cb4651461066f5761021a565b80635c975abb1461050b5780636352211e1461053657806370a0823114610573578063715018a6146105b05761021a565b806323b872dd116101a657806342842e0e1161017557806342842e0e1461043c57806344a0d68a146104655780634fb2343a1461048e57806351830227146104b757806355f804b3146104e25761021a565b806323b872dd146103c257806336db7129146103eb5780633ccfd60b146104165780633cf6bb39146104205761021a565b8063081c8c44116101ed578063081c8c44146102ed578063095ea7b31461031857806313faede61461034157806318160ddd1461036c578063239c70ae146103975761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612a74565b61084e565b6040516102539190612e0c565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612a4b565b6108e0565b005b34801561029157600080fd5b5061029a610979565b6040516102a79190612e27565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190612b07565b610a0b565b6040516102e49190612da5565b60405180910390f35b3480156102f957600080fd5b50610302610a87565b60405161030f9190612e27565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612a0f565b610b15565b005b34801561034d57600080fd5b50610356610c56565b6040516103639190612ec9565b60405180910390f35b34801561037857600080fd5b50610381610c5c565b60405161038e9190612ec9565b60405180910390f35b3480156103a357600080fd5b506103ac610c73565b6040516103b99190612ec9565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190612909565b610c79565b005b3480156103f757600080fd5b50610400610c89565b60405161040d9190612ec9565b60405180910390f35b61041e610c8f565b005b61043a60048036038101906104359190612b07565b610d8b565b005b34801561044857600080fd5b50610463600480360381019061045e9190612909565b610e96565b005b34801561047157600080fd5b5061048c60048036038101906104879190612b07565b610eb6565b005b34801561049a57600080fd5b506104b560048036038101906104b09190612b07565b610f3c565b005b3480156104c357600080fd5b506104cc610fc2565b6040516104d99190612e0c565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190612ac6565b610fd5565b005b34801561051757600080fd5b5061052061106b565b60405161052d9190612e0c565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612b07565b61107e565b60405161056a9190612da5565b60405180910390f35b34801561057f57600080fd5b5061059a600480360381019061059591906128a4565b611090565b6040516105a79190612ec9565b60405180910390f35b3480156105bc57600080fd5b506105c5611125565b005b3480156105d357600080fd5b506105ee60048036038101906105e99190612b07565b6111ad565b005b3480156105fc57600080fd5b5061061760048036038101906106129190612b07565b611233565b005b34801561062557600080fd5b5061062e6112b9565b60405161063b9190612da5565b60405180910390f35b34801561065057600080fd5b506106596112e3565b6040516106669190612e27565b60405180910390f35b34801561067b57600080fd5b50610696600480360381019061069191906129d3565b611375565b005b3480156106a457600080fd5b506106ad6114ed565b005b3480156106bb57600080fd5b506106d660048036038101906106d19190612958565b611586565b005b3480156106e457600080fd5b506106ed6115f9565b6040516106fa9190612e27565b60405180910390f35b34801561070f57600080fd5b5061072a60048036038101906107259190612b07565b611687565b6040516107379190612e27565b60405180910390f35b34801561074c57600080fd5b506107556117af565b6040516107629190612ec9565b60405180910390f35b34801561077757600080fd5b50610792600480360381019061078d9190612ac6565b6117b5565b005b3480156107a057600080fd5b506107a961184b565b6040516107b69190612ec9565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e191906128cd565b611851565b6040516107f39190612e0c565b60405180910390f35b34801561080857600080fd5b50610823600480360381019061081e9190612ac6565b6118e5565b005b34801561083157600080fd5b5061084c600480360381019061084791906128a4565b61197b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108e8611a73565b73ffffffffffffffffffffffffffffffffffffffff166109066112b9565b73ffffffffffffffffffffffffffffffffffffffff161461095c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095390612e89565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60606002805461098890613199565b80601f01602080910402602001604051908101604052809291908181526020018280546109b490613199565b8015610a015780601f106109d657610100808354040283529160200191610a01565b820191906000526020600020905b8154815290600101906020018083116109e457829003601f168201915b5050505050905090565b6000610a1682611a7b565b610a4c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600f8054610a9490613199565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac090613199565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b505050505081565b6000610b2082611ada565b90508073ffffffffffffffffffffffffffffffffffffffff16610b41611ba8565b73ffffffffffffffffffffffffffffffffffffffff1614610ba457610b6d81610b68611ba8565b611851565b610ba3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600b5481565b6000610c66611bb0565b6001546000540303905090565b600d5481565b610c84838383611bb9565b505050565b60105481565b610c97611a73565b73ffffffffffffffffffffffffffffffffffffffff16610cb56112b9565b73ffffffffffffffffffffffffffffffffffffffff1614610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290612e89565b60405180910390fd5b6000610d156112b9565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d3890612d90565b60006040518083038185875af1925050503d8060008114610d75576040519150601f19603f3d011682016040523d82523d6000602084013e610d7a565b606091505b5050905080610d8857600080fd5b50565b6000610d95610c5c565b9050600e60009054906101000a900460ff1615610db157600080fd5b60008211610dbe57600080fd5b600d54821115610dcd57600080fd5b600c548282610ddc9190612fce565b1115610de757600080fd5b601054610df333611090565b10610e33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2a90612ea9565b60405180910390fd5b610e3b6112b9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e885781600b54610e7b9190613055565b341015610e8757600080fd5b5b610e923383611f81565b5050565b610eb183838360405180602001604052806000815250611586565b505050565b610ebe611a73565b73ffffffffffffffffffffffffffffffffffffffff16610edc6112b9565b73ffffffffffffffffffffffffffffffffffffffff1614610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990612e89565b60405180910390fd5b80600b8190555050565b610f44611a73565b73ffffffffffffffffffffffffffffffffffffffff16610f626112b9565b73ffffffffffffffffffffffffffffffffffffffff1614610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90612e89565b60405180910390fd5b8060118190555050565b600e60019054906101000a900460ff1681565b610fdd611a73565b73ffffffffffffffffffffffffffffffffffffffff16610ffb6112b9565b73ffffffffffffffffffffffffffffffffffffffff1614611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890612e89565b60405180910390fd5b80600990805190602001906110679291906126c8565b5050565b600e60009054906101000a900460ff1681565b600061108982611ada565b9050919050565b60008061109c83611f9f565b14156110d4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61112d611a73565b73ffffffffffffffffffffffffffffffffffffffff1661114b6112b9565b73ffffffffffffffffffffffffffffffffffffffff16146111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890612e89565b60405180910390fd5b6111ab6000611fa9565b565b6111b5611a73565b73ffffffffffffffffffffffffffffffffffffffff166111d36112b9565b73ffffffffffffffffffffffffffffffffffffffff1614611229576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122090612e89565b60405180910390fd5b80600d8190555050565b61123b611a73565b73ffffffffffffffffffffffffffffffffffffffff166112596112b9565b73ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690612e89565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546112f290613199565b80601f016020809104026020016040519081016040528092919081815260200182805461131e90613199565b801561136b5780601f106113405761010080835404028352916020019161136b565b820191906000526020600020905b81548152906001019060200180831161134e57829003601f168201915b5050505050905090565b61137d611ba8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113e2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113ef611ba8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661149c611ba8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114e19190612e0c565b60405180910390a35050565b6114f5611a73565b73ffffffffffffffffffffffffffffffffffffffff166115136112b9565b73ffffffffffffffffffffffffffffffffffffffff1614611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090612e89565b60405180910390fd5b6001600e60016101000a81548160ff021916908315150217905550565b611591848484611bb9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115f3576115bc8484848461206f565b6115f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461160690613199565b80601f016020809104026020016040519081016040528092919081815260200182805461163290613199565b801561167f5780601f106116545761010080835404028352916020019161167f565b820191906000526020600020905b81548152906001019060200180831161166257829003601f168201915b505050505081565b606061169282611a7b565b6116d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c890612e49565b60405180910390fd5b60001515600e60019054906101000a900460ff161515141561174e576000600f80546116fc90613199565b9050116117185760405180602001604052806000815250611747565b600f611723836121cf565b600a60405160200161173793929190612d5f565b6040516020818303038152906040525b90506117aa565b600061175861237c565b9050600081511161177857604051806020016040528060008152506117a6565b80611782846121cf565b600a60405160200161179693929190612d2e565b6040516020818303038152906040525b9150505b919050565b600c5481565b6117bd611a73565b73ffffffffffffffffffffffffffffffffffffffff166117db6112b9565b73ffffffffffffffffffffffffffffffffffffffff1614611831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182890612e89565b60405180910390fd5b80600a90805190602001906118479291906126c8565b5050565b60115481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118ed611a73565b73ffffffffffffffffffffffffffffffffffffffff1661190b6112b9565b73ffffffffffffffffffffffffffffffffffffffff1614611961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195890612e89565b60405180910390fd5b80600f90805190602001906119779291906126c8565b5050565b611983611a73565b73ffffffffffffffffffffffffffffffffffffffff166119a16112b9565b73ffffffffffffffffffffffffffffffffffffffff16146119f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ee90612e89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5e90612e69565b60405180910390fd5b611a7081611fa9565b50565b600033905090565b600081611a86611bb0565b11158015611a95575060005482105b8015611ad3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611ae9611bb0565b11611b7157600054811015611b705760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b6e575b6000811415611b64576004600083600190039350838152602001908152602001600020549050611b39565b8092505050611ba3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b6000611bc482611ada565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611c2b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611c84611ba8565b73ffffffffffffffffffffffffffffffffffffffff161480611cb35750611cb286611cad611ba8565b611851565b5b80611cf05750611cc1611ba8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611d29576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611d3486611f9f565b1415611d6c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d79868686600161240e565b6000611d8483611f9f565b14611dc0576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611e8787611f9f565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611f11576000600185019050600060046000838152602001908152602001600020541415611f0f576000548114611f0e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f79868686600161246c565b505050505050565b611f9b828260405180602001604052806000815250612472565b5050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612095611ba8565b8786866040518563ffffffff1660e01b81526004016120b79493929190612dc0565b602060405180830381600087803b1580156120d157600080fd5b505af192505050801561210257506040513d601f19601f820116820180604052508101906120ff9190612a9d565b60015b61217c573d8060008114612132576040519150601f19603f3d011682016040523d82523d6000602084013e612137565b606091505b50600081511415612174576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612217576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612377565b600082905060005b60008214612249578080612232906131fc565b915050600a826122429190613024565b915061221f565b60008167ffffffffffffffff81111561228b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122bd5781602001600182028036833780820191505090505b5090505b60008514612370576001826122d691906130af565b9150600a856122e59190613245565b60306122f19190612fce565b60f81b81838151811061232d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123699190613024565b94506122c1565b8093505050505b919050565b60606009805461238b90613199565b80601f01602080910402602001604051908101604052809291908181526020018280546123b790613199565b80156124045780601f106123d957610100808354040283529160200191612404565b820191906000526020600020905b8154815290600101906020018083116123e757829003601f168201915b5050505050905090565b60115461241a33611090565b1061245a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245190612ea9565b60405180910390fd5b6124668484848461250f565b50505050565b50505050565b61247c8383612515565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461250a57600080549050600083820390505b6124bc600086838060010194508661206f565b6124f2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124a957816000541461250757600080fd5b50505b505050565b50505050565b600080549050600061252684611f9f565b141561255e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612599576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125a6600084838561240e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161260b600184146126be565b901b60a042901b61261b85611f9f565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a482811061263757828201600081905550506126b9600084838561246c565b505050565b6000819050919050565b8280546126d490613199565b90600052602060002090601f0160209004810192826126f6576000855561273d565b82601f1061270f57805160ff191683800117855561273d565b8280016001018555821561273d579182015b8281111561273c578251825591602001919060010190612721565b5b50905061274a919061274e565b5090565b5b8082111561276757600081600090555060010161274f565b5090565b600061277e61277984612f09565b612ee4565b90508281526020810184848401111561279657600080fd5b6127a1848285613157565b509392505050565b60006127bc6127b784612f3a565b612ee4565b9050828152602081018484840111156127d457600080fd5b6127df848285613157565b509392505050565b6000813590506127f681613436565b92915050565b60008135905061280b8161344d565b92915050565b60008135905061282081613464565b92915050565b60008151905061283581613464565b92915050565b600082601f83011261284c57600080fd5b813561285c84826020860161276b565b91505092915050565b600082601f83011261287657600080fd5b81356128868482602086016127a9565b91505092915050565b60008135905061289e8161347b565b92915050565b6000602082840312156128b657600080fd5b60006128c4848285016127e7565b91505092915050565b600080604083850312156128e057600080fd5b60006128ee858286016127e7565b92505060206128ff858286016127e7565b9150509250929050565b60008060006060848603121561291e57600080fd5b600061292c868287016127e7565b935050602061293d868287016127e7565b925050604061294e8682870161288f565b9150509250925092565b6000806000806080858703121561296e57600080fd5b600061297c878288016127e7565b945050602061298d878288016127e7565b935050604061299e8782880161288f565b925050606085013567ffffffffffffffff8111156129bb57600080fd5b6129c78782880161283b565b91505092959194509250565b600080604083850312156129e657600080fd5b60006129f4858286016127e7565b9250506020612a05858286016127fc565b9150509250929050565b60008060408385031215612a2257600080fd5b6000612a30858286016127e7565b9250506020612a418582860161288f565b9150509250929050565b600060208284031215612a5d57600080fd5b6000612a6b848285016127fc565b91505092915050565b600060208284031215612a8657600080fd5b6000612a9484828501612811565b91505092915050565b600060208284031215612aaf57600080fd5b6000612abd84828501612826565b91505092915050565b600060208284031215612ad857600080fd5b600082013567ffffffffffffffff811115612af257600080fd5b612afe84828501612865565b91505092915050565b600060208284031215612b1957600080fd5b6000612b278482850161288f565b91505092915050565b612b39816130e3565b82525050565b612b48816130f5565b82525050565b6000612b5982612f80565b612b638185612f96565b9350612b73818560208601613166565b612b7c81613332565b840191505092915050565b6000612b9282612f8b565b612b9c8185612fb2565b9350612bac818560208601613166565b612bb581613332565b840191505092915050565b6000612bcb82612f8b565b612bd58185612fc3565b9350612be5818560208601613166565b80840191505092915050565b60008154612bfe81613199565b612c088186612fc3565b94506001821660008114612c235760018114612c3457612c67565b60ff19831686528186019350612c67565b612c3d85612f6b565b60005b83811015612c5f57815481890152600182019150602081019050612c40565b838801955050505b50505092915050565b6000612c7d603083612fb2565b9150612c8882613343565b604082019050919050565b6000612ca0602683612fb2565b9150612cab82613392565b604082019050919050565b6000612cc3602083612fb2565b9150612cce826133e1565b602082019050919050565b6000612ce6600083612fa7565b9150612cf18261340a565b600082019050919050565b6000612d09601a83612fb2565b9150612d148261340d565b602082019050919050565b612d288161314d565b82525050565b6000612d3a8286612bc0565b9150612d468285612bc0565b9150612d528284612bf1565b9150819050949350505050565b6000612d6b8286612bf1565b9150612d778285612bc0565b9150612d838284612bf1565b9150819050949350505050565b6000612d9b82612cd9565b9150819050919050565b6000602082019050612dba6000830184612b30565b92915050565b6000608082019050612dd56000830187612b30565b612de26020830186612b30565b612def6040830185612d1f565b8181036060830152612e018184612b4e565b905095945050505050565b6000602082019050612e216000830184612b3f565b92915050565b60006020820190508181036000830152612e418184612b87565b905092915050565b60006020820190508181036000830152612e6281612c70565b9050919050565b60006020820190508181036000830152612e8281612c93565b9050919050565b60006020820190508181036000830152612ea281612cb6565b9050919050565b60006020820190508181036000830152612ec281612cfc565b9050919050565b6000602082019050612ede6000830184612d1f565b92915050565b6000612eee612eff565b9050612efa82826131cb565b919050565b6000604051905090565b600067ffffffffffffffff821115612f2457612f23613303565b5b612f2d82613332565b9050602081019050919050565b600067ffffffffffffffff821115612f5557612f54613303565b5b612f5e82613332565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612fd98261314d565b9150612fe48361314d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561301957613018613276565b5b828201905092915050565b600061302f8261314d565b915061303a8361314d565b92508261304a576130496132a5565b5b828204905092915050565b60006130608261314d565b915061306b8361314d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156130a4576130a3613276565b5b828202905092915050565b60006130ba8261314d565b91506130c58361314d565b9250828210156130d8576130d7613276565b5b828203905092915050565b60006130ee8261312d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613184578082015181840152602081019050613169565b83811115613193576000848401525b50505050565b600060028204905060018216806131b157607f821691505b602082108114156131c5576131c46132d4565b5b50919050565b6131d482613332565b810181811067ffffffffffffffff821117156131f3576131f2613303565b5b80604052505050565b60006132078261314d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561323a57613239613276565b5b600182019050919050565b60006132508261314d565b915061325b8361314d565b92508261326b5761326a6132a5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f57616c6c6574206d617820616d6f756e74206f766572666c6f77000000000000600082015250565b61343f816130e3565b811461344a57600080fd5b50565b613456816130f5565b811461346157600080fd5b50565b61346d81613101565b811461347857600080fd5b50565b6134848161314d565b811461348f57600080fd5b5056fea264697066735822122095807188bf231238cbe3acde22e97d58328c2b58f5a01e2fa0a9967cb66d6c1a64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a445a4d494c4954415259000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003445a4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): DZMILITARY
Arg [1] : _symbol (string): DZM
Arg [2] : _initBaseURI (string):
Arg [3] : _initNotRevealedUri (string):

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 445a4d494c495441525900000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 445a4d0000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41067:3355:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16976:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43927:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22012:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24021:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41377:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23540:415;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41205:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16030:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41277:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24907:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41410:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44274:145;;;:::i;:::-;;42162:471;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25148:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43359:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44142:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41344:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43695:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41314:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21801:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17655:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1507:103;;;;;;;;;;;;;:::i;:::-;;43445:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44006:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;856:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22181:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24297:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43286:65;;;;;;;;;;;;;:::i;:::-;;25404:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41163:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42639:625;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41242:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43799:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41449:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24676:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43569:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1765:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16976:615;17061:4;17376:10;17361:25;;:11;:25;;;;:102;;;;17453:10;17438:25;;:11;:25;;;;17361:102;:179;;;;17530:10;17515:25;;:11;:25;;;;17361:179;17341:199;;16976:615;;;:::o;43927:73::-;1087:12;:10;:12::i;:::-;1076:23;;:7;:5;:7::i;:::-;:23;;;1068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43988:6:::1;43979;;:15;;;;;;;;;;;;;;;;;;43927:73:::0;:::o;22012:100::-;22066:13;22099:5;22092:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22012:100;:::o;24021:204::-;24089:7;24114:16;24122:7;24114;:16::i;:::-;24109:64;;24139:34;;;;;;;;;;;;;;24109:64;24193:15;:24;24209:7;24193:24;;;;;;;;;;;;;;;;;;;;;24186:31;;24021:204;;;:::o;41377:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23540:415::-;23613:13;23645:27;23664:7;23645:18;:27::i;:::-;23613:61;;23714:5;23691:28;;:19;:17;:19::i;:::-;:28;;;23687:175;;23739:44;23756:5;23763:19;:17;:19::i;:::-;23739:16;:44::i;:::-;23734:128;;23811:35;;;;;;;;;;;;;;23734:128;23687:175;23901:2;23874:15;:24;23890:7;23874:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23939:7;23935:2;23919:28;;23928:5;23919:28;;;;;;;;;;;;23540:415;;;:::o;41205:32::-;;;;:::o;16030:315::-;16083:7;16311:15;:13;:15::i;:::-;16296:12;;16280:13;;:28;:46;16273:53;;16030:315;:::o;41277:32::-;;;;:::o;24907:170::-;25041:28;25051:4;25057:2;25061:7;25041:9;:28::i;:::-;24907:170;;;:::o;41410:34::-;;;;:::o;44274:145::-;1087:12;:10;:12::i;:::-;1076:23;;:7;:5;:7::i;:::-;:23;;;1068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44327:7:::1;44348;:5;:7::i;:::-;44340:21;;44369;44340:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44326:69;;;44410:2;44402:11;;;::::0;::::1;;1147:1;44274:145::o:0;42162:471::-;42227:14;42244:13;:11;:13::i;:::-;42227:30;;42273:6;;;;;;;;;;;42272:7;42264:16;;;;;;42309:1;42295:11;:15;42287:24;;;;;;42341:13;;42326:11;:28;;42318:37;;;;;;42394:9;;42379:11;42370:6;:20;;;;:::i;:::-;:33;;42362:42;;;;;;42443:18;;42419:21;42429:10;42419:9;:21::i;:::-;:42;42411:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;42519:7;:5;:7::i;:::-;42505:21;;:10;:21;;;42501:84;;42565:11;42558:4;;:18;;;;:::i;:::-;42545:9;:31;;42537:40;;;;;;42501:84;42593:34;42603:10;42615:11;42593:9;:34::i;:::-;42162:471;;:::o;25148:185::-;25286:39;25303:4;25309:2;25313:7;25286:39;;;;;;;;;;;;:16;:39::i;:::-;25148:185;;;:::o;43359:80::-;1087:12;:10;:12::i;:::-;1076:23;;:7;:5;:7::i;:::-;:23;;;1068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43425:8:::1;43418:4;:15;;;;43359:80:::0;:::o;44142:125::-;1087:12;:10;:12::i;:::-;1076:23;;:7;:5;:7::i;:::-;:23;;;1068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44241:20:::1;44225:13;:36;;;;44142:125:::0;:::o;41344:28::-;;;;;;;;;;;;;:::o;43695:98::-;1087:12;:10;:12::i;:::-;1076:23;;:7;:5;:7::i;:::-;:23;;;1068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43776:11:::1;43766:7;:21;;;;;;;;;;;;:::i;:::-;;43695:98:::0;:::o;41314:25::-;;;;;;;;;;;;;:::o;21801:144::-;21865:7;21908:27;21927:7;21908:18;:27::i;:::-;21885:52;;21801:144;;;:::o;17655:234::-;17719:7;17771:1;17743:24;17761:5;17743:17;:24::i;:::-;:29;17739:70;;;17781:28;;;;;;;;;;;;;;17739:70;13000:13;17827:18;:25;17846:5;17827:25;;;;;;;;;;;;;;;;:54;17820:61;;17655:234;;;:::o;1507:103::-;1087:12;:10;:12::i;:::-;1076:23;;:7;:5;:7::i;:::-;:23;;;1068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1572:30:::1;1599:1;1572:18;:30::i;:::-;1507:103::o:0;43445:116::-;1087:12;:10;:12::i;:::-;1076:23;;:7;:5;:7::i;:::-;:23;;;1068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43538:17:::1;43522:13;:33;;;;43445:116:::0;:::o;44006:130::-;1087:12;:10;:12::i;:::-;1076:23;;:7;:5;:7::i;:::-;:23;;;1068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44111:19:::1;44090:18;:40;;;;44006:130:::0;:::o;856:87::-;902:7;929:6;;;;;;;;;;;922:13;;856:87;:::o;22181:104::-;22237:13;22270:7;22263:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22181:104;:::o;24297:308::-;24408:19;:17;:19::i;:::-;24396:31;;:8;:31;;;24392:61;;;24436:17;;;;;;;;;;;;;;24392:61;24518:8;24466:18;:39;24485:19;:17;:19::i;:::-;24466:39;;;;;;;;;;;;;;;:49;24506:8;24466:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24578:8;24542:55;;24557:19;:17;:19::i;:::-;24542:55;;;24588:8;24542:55;;;;;;:::i;:::-;;;;;;;;24297:308;;:::o;43286:65::-;1087:12;:10;:12::i;:::-;1076:23;;:7;:5;:7::i;:::-;:23;;;1068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43341:4:::1;43330:8;;:15;;;;;;;;;;;;;;;;;;43286:65::o:0;25404:396::-;25571:28;25581:4;25587:2;25591:7;25571:9;:28::i;:::-;25632:1;25614:2;:14;;;:19;25610:183;;25653:56;25684:4;25690:2;25694:7;25703:5;25653:30;:56::i;:::-;25648:145;;25737:40;;;;;;;;;;;;;;25648:145;25610:183;25404:396;;;;:::o;41163:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42639:625::-;42737:13;42778:16;42786:7;42778;:16::i;:::-;42762:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;42888:5;42876:17;;:8;;;;;;;;;;;:17;;;42873:189;;;42944:1;42919:14;42913:28;;;;;:::i;:::-;;;:32;:141;;;;;;;;;;;;;;;;;42985:14;43001:18;:7;:16;:18::i;:::-;43021:13;42968:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42913:141;42906:148;;;;42873:189;43070:28;43101:10;:8;:10::i;:::-;43070:41;;43156:1;43131:14;43125:28;:32;:133;;;;;;;;;;;;;;;;;43193:14;43209:18;:7;:16;:18::i;:::-;43229:13;43176:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43125:133;43118:140;;;42639:625;;;;:::o;41242:30::-;;;;:::o;43799:122::-;1087:12;:10;:12::i;:::-;1076:23;;:7;:5;:7::i;:::-;:23;;;1068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43898:17:::1;43882:13;:33;;;;;;;;;;;;:::i;:::-;;43799:122:::0;:::o;41449:29::-;;;;:::o;24676:164::-;24773:4;24797:18;:25;24816:5;24797:25;;;;;;;;;;;;;;;:35;24823:8;24797:35;;;;;;;;;;;;;;;;;;;;;;;;;24790:42;;24676:164;;;;:::o;43569:120::-;1087:12;:10;:12::i;:::-;1076:23;;:7;:5;:7::i;:::-;:23;;;1068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43668:15:::1;43651:14;:32;;;;;;;;;;;;:::i;:::-;;43569:120:::0;:::o;1765:201::-;1087:12;:10;:12::i;:::-;1076:23;;:7;:5;:7::i;:::-;:23;;;1068:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1874:1:::1;1854:22;;:8;:22;;;;1846:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1930:28;1949:8;1930:18;:28::i;:::-;1765:201:::0;:::o;230:98::-;283:7;310:10;303:17;;230:98;:::o;26055:273::-;26112:4;26168:7;26149:15;:13;:15::i;:::-;:26;;:66;;;;;26202:13;;26192:7;:23;26149:66;:152;;;;;26300:1;13770:8;26253:17;:26;26271:7;26253:26;;;;;;;;;;;;:43;:48;26149:152;26129:172;;26055:273;;;:::o;19316:1129::-;19383:7;19403:12;19418:7;19403:22;;19486:4;19467:15;:13;:15::i;:::-;:23;19463:915;;19520:13;;19513:4;:20;19509:869;;;19558:14;19575:17;:23;19593:4;19575:23;;;;;;;;;;;;19558:40;;19691:1;13770:8;19664:6;:23;:28;19660:699;;;20183:113;20200:1;20190:6;:11;20183:113;;;20243:17;:25;20261:6;;;;;;;20243:25;;;;;;;;;;;;20234:34;;20183:113;;;20329:6;20322:13;;;;;;19660:699;19509:869;;19463:915;20406:31;;;;;;;;;;;;;;19316:1129;;;;:::o;38729:105::-;38789:7;38816:10;38809:17;;38729:105;:::o;15554:92::-;15610:7;15637:1;15630:8;;15554:92;:::o;29721:2654::-;29836:27;29866;29885:7;29866:18;:27::i;:::-;29836:57;;29951:4;29910:45;;29926:19;29910:45;;;29906:86;;29964:28;;;;;;;;;;;;;;29906:86;30005:23;30031:15;:24;30047:7;30031:24;;;;;;;;;;;;;;;;;;;;;30005:50;;30068:22;30117:4;30094:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;30138:43;30155:4;30161:19;:17;:19::i;:::-;30138:16;:43::i;:::-;30094:87;:142;;;;30217:19;:17;:19::i;:::-;30198:38;;:15;:38;;;30094:142;30068:169;;30255:17;30250:66;;30281:35;;;;;;;;;;;;;;30250:66;30356:1;30331:21;30349:2;30331:17;:21::i;:::-;:26;30327:62;;;30366:23;;;;;;;;;;;;;;30327:62;30402:43;30424:4;30430:2;30434:7;30443:1;30402:21;:43::i;:::-;30553:1;30515:34;30533:15;30515:17;:34::i;:::-;:39;30511:103;;30578:15;:24;30594:7;30578:24;;;;;;;;;;;;30571:31;;;;;;;;;;;30511:103;30981:18;:24;31000:4;30981:24;;;;;;;;;;;;;;;;30979:26;;;;;;;;;;;;31050:18;:22;31069:2;31050:22;;;;;;;;;;;;;;;;31048:24;;;;;;;;;;;14048:8;13654:3;31431:15;:41;;31389:21;31407:2;31389:17;:21::i;:::-;:84;:128;31343:17;:26;31361:7;31343:26;;;;;;;;;;;:174;;;;31687:1;14048:8;31637:19;:46;:51;31633:626;;;31709:19;31741:1;31731:7;:11;31709:33;;31898:1;31864:17;:30;31882:11;31864:30;;;;;;;;;;;;:35;31860:384;;;32002:13;;31987:11;:28;31983:242;;32182:19;32149:17;:30;32167:11;32149:30;;;;;;;;;;;:52;;;;31983:242;31860:384;31633:626;;32306:7;32302:2;32287:27;;32296:4;32287:27;;;;;;;;;;;;32325:42;32346:4;32352:2;32356:7;32365:1;32325:20;:42::i;:::-;29721:2654;;;;;;:::o;26412:104::-;26481:27;26491:2;26495:8;26481:27;;;;;;;;;;;;:9;:27::i;:::-;26412:104;;:::o;23101:148::-;23165:14;23226:5;23216:15;;23201:41;;;:::o;2126:191::-;2200:16;2219:6;;;;;;;;;;;2200:25;;2245:8;2236:6;;:17;;;;;;;;;;;;;;;;;;2300:8;2269:40;;2290:8;2269:40;;;;;;;;;;;;2126:191;;:::o;36198:716::-;36361:4;36407:2;36382:45;;;36428:19;:17;:19::i;:::-;36449:4;36455:7;36464:5;36382:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36378:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36682:1;36665:6;:13;:18;36661:235;;;36711:40;;;;;;;;;;;;;;36661:235;36854:6;36848:13;36839:6;36835:2;36831:15;36824:38;36378:529;36551:54;;;36541:64;;;:6;:64;;;;36534:71;;;36198:716;;;;;;:::o;2516:723::-;2572:13;2802:1;2793:5;:10;2789:53;;;2820:10;;;;;;;;;;;;;;;;;;;;;2789:53;2852:12;2867:5;2852:20;;2883:14;2908:78;2923:1;2915:4;:9;2908:78;;2941:8;;;;;:::i;:::-;;;;2972:2;2964:10;;;;;:::i;:::-;;;2908:78;;;2996:19;3028:6;3018:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2996:39;;3046:154;3062:1;3053:5;:10;3046:154;;3090:1;3080:11;;;;;:::i;:::-;;;3157:2;3149:5;:10;;;;:::i;:::-;3136:2;:24;;;;:::i;:::-;3123:39;;3106:6;3113;3106:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;3186:2;3177:11;;;;;:::i;:::-;;;3046:154;;;3224:6;3210:21;;;;;2516:723;;;;:::o;41762:102::-;41822:13;41851:7;41844:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41762:102;:::o;41870:272::-;42024:13;;42000:21;42010:10;42000:9;:21::i;:::-;:37;41992:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;42075:61;42103:4;42109:2;42113:12;42127:8;42075:27;:61::i;:::-;41870:272;;;;:::o;38380:158::-;;;;;:::o;26903:681::-;27026:19;27032:2;27036:8;27026:5;:19::i;:::-;27105:1;27087:2;:14;;;:19;27083:483;;27127:11;27141:13;;27127:27;;27173:13;27195:8;27189:3;:14;27173:30;;27222:233;27253:62;27292:1;27296:2;27300:7;;;;;;27309:5;27253:30;:62::i;:::-;27248:167;;27351:40;;;;;;;;;;;;;;27248:167;27450:3;27442:5;:11;27222:233;;27537:3;27520:13;;:20;27516:34;;27542:8;;;27516:34;27083:483;;;26903:681;;;:::o;37562:159::-;;;;;:::o;27857:1610::-;27922:20;27945:13;;27922:36;;27998:1;27973:21;27991:2;27973:17;:21::i;:::-;:26;27969:58;;;28008:19;;;;;;;;;;;;;;27969:58;28054:1;28042:8;:13;28038:44;;;28064:18;;;;;;;;;;;;;;28038:44;28095:61;28125:1;28129:2;28133:12;28147:8;28095:21;:61::i;:::-;28699:1;13137:2;28670:1;:25;;28669:31;28657:8;:44;28631:18;:22;28650:2;28631:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13913:3;29100:29;29127:1;29115:8;:13;29100:14;:29::i;:::-;:56;;13654:3;29037:15;:41;;28995:21;29013:2;28995:17;:21::i;:::-;:84;:162;28944:17;:31;28962:12;28944:31;;;;;;;;;;;:213;;;;29174:14;29203:119;29270:8;;;;;;29255:12;:23;29251:2;29230:49;;29247:1;29230:49;;;;;;;;;;;;29312:8;29303:6;:17;29203:119;;29369:8;29354:12;:23;29338:13;:39;;;;27857:1610;29399:60;29428:1;29432:2;29436:12;29450:8;29399:20;:60::i;:::-;27857:1610;;;:::o;23336:142::-;23394:14;23455:5;23445:15;;23430:41;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:118::-;6435:24;6453:5;6435:24;:::i;:::-;6430:3;6423:37;6413:53;;:::o;6472:109::-;6553:21;6568:5;6553:21;:::i;:::-;6548:3;6541:34;6531:50;;:::o;6587:360::-;6673:3;6701:38;6733:5;6701:38;:::i;:::-;6755:70;6818:6;6813:3;6755:70;:::i;:::-;6748:77;;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6911:29;6933:6;6911:29;:::i;:::-;6906:3;6902:39;6895:46;;6677:270;;;;;:::o;6953:364::-;7041:3;7069:39;7102:5;7069:39;:::i;:::-;7124:71;7188:6;7183:3;7124:71;:::i;:::-;7117:78;;7204:52;7249:6;7244:3;7237:4;7230:5;7226:16;7204:52;:::i;:::-;7281:29;7303:6;7281:29;:::i;:::-;7276:3;7272:39;7265:46;;7045:272;;;;;:::o;7323:377::-;7429:3;7457:39;7490:5;7457:39;:::i;:::-;7512:89;7594:6;7589:3;7512:89;:::i;:::-;7505:96;;7610:52;7655:6;7650:3;7643:4;7636:5;7632:16;7610:52;:::i;:::-;7687:6;7682:3;7678:16;7671:23;;7433:267;;;;;:::o;7730:845::-;7833:3;7870:5;7864:12;7899:36;7925:9;7899:36;:::i;:::-;7951:89;8033:6;8028:3;7951:89;:::i;:::-;7944:96;;8071:1;8060:9;8056:17;8087:1;8082:137;;;;8233:1;8228:341;;;;8049:520;;8082:137;8166:4;8162:9;8151;8147:25;8142:3;8135:38;8202:6;8197:3;8193:16;8186:23;;8082:137;;8228:341;8295:38;8327:5;8295:38;:::i;:::-;8355:1;8369:154;8383:6;8380:1;8377:13;8369:154;;;8457:7;8451:14;8447:1;8442:3;8438:11;8431:35;8507:1;8498:7;8494:15;8483:26;;8405:4;8402:1;8398:12;8393:17;;8369:154;;;8552:6;8547:3;8543:16;8536:23;;8235:334;;8049:520;;7837:738;;;;;;:::o;8581:366::-;8723:3;8744:67;8808:2;8803:3;8744:67;:::i;:::-;8737:74;;8820:93;8909:3;8820:93;:::i;:::-;8938:2;8933:3;8929:12;8922:19;;8727:220;;;:::o;8953:366::-;9095:3;9116:67;9180:2;9175:3;9116:67;:::i;:::-;9109:74;;9192:93;9281:3;9192:93;:::i;:::-;9310:2;9305:3;9301:12;9294:19;;9099:220;;;:::o;9325:366::-;9467:3;9488:67;9552:2;9547:3;9488:67;:::i;:::-;9481:74;;9564:93;9653:3;9564:93;:::i;:::-;9682:2;9677:3;9673:12;9666:19;;9471:220;;;:::o;9697:398::-;9856:3;9877:83;9958:1;9953:3;9877:83;:::i;:::-;9870:90;;9969:93;10058:3;9969:93;:::i;:::-;10087:1;10082:3;10078:11;10071:18;;9860:235;;;:::o;10101:366::-;10243:3;10264:67;10328:2;10323:3;10264:67;:::i;:::-;10257:74;;10340:93;10429:3;10340:93;:::i;:::-;10458:2;10453:3;10449:12;10442:19;;10247:220;;;:::o;10473:118::-;10560:24;10578:5;10560:24;:::i;:::-;10555:3;10548:37;10538:53;;:::o;10597:589::-;10822:3;10844:95;10935:3;10926:6;10844:95;:::i;:::-;10837:102;;10956:95;11047:3;11038:6;10956:95;:::i;:::-;10949:102;;11068:92;11156:3;11147:6;11068:92;:::i;:::-;11061:99;;11177:3;11170:10;;10826:360;;;;;;:::o;11192:583::-;11414:3;11436:92;11524:3;11515:6;11436:92;:::i;:::-;11429:99;;11545:95;11636:3;11627:6;11545:95;:::i;:::-;11538:102;;11657:92;11745:3;11736:6;11657:92;:::i;:::-;11650:99;;11766:3;11759:10;;11418:357;;;;;;:::o;11781:379::-;11965:3;11987:147;12130:3;11987:147;:::i;:::-;11980:154;;12151:3;12144:10;;11969:191;;;:::o;12166:222::-;12259:4;12297:2;12286:9;12282:18;12274:26;;12310:71;12378:1;12367:9;12363:17;12354:6;12310:71;:::i;:::-;12264:124;;;;:::o;12394:640::-;12589:4;12627:3;12616:9;12612:19;12604:27;;12641:71;12709:1;12698:9;12694:17;12685:6;12641:71;:::i;:::-;12722:72;12790:2;12779:9;12775:18;12766:6;12722:72;:::i;:::-;12804;12872:2;12861:9;12857:18;12848:6;12804:72;:::i;:::-;12923:9;12917:4;12913:20;12908:2;12897:9;12893:18;12886:48;12951:76;13022:4;13013:6;12951:76;:::i;:::-;12943:84;;12594:440;;;;;;;:::o;13040:210::-;13127:4;13165:2;13154:9;13150:18;13142:26;;13178:65;13240:1;13229:9;13225:17;13216:6;13178:65;:::i;:::-;13132:118;;;;:::o;13256:313::-;13369:4;13407:2;13396:9;13392:18;13384:26;;13456:9;13450:4;13446:20;13442:1;13431:9;13427:17;13420:47;13484:78;13557:4;13548:6;13484:78;:::i;:::-;13476:86;;13374:195;;;;:::o;13575:419::-;13741:4;13779:2;13768:9;13764:18;13756:26;;13828:9;13822:4;13818:20;13814:1;13803:9;13799:17;13792:47;13856:131;13982:4;13856:131;:::i;:::-;13848:139;;13746:248;;;:::o;14000:419::-;14166:4;14204:2;14193:9;14189:18;14181:26;;14253:9;14247:4;14243:20;14239:1;14228:9;14224:17;14217:47;14281:131;14407:4;14281:131;:::i;:::-;14273:139;;14171:248;;;:::o;14425:419::-;14591:4;14629:2;14618:9;14614:18;14606:26;;14678:9;14672:4;14668:20;14664:1;14653:9;14649:17;14642:47;14706:131;14832:4;14706:131;:::i;:::-;14698:139;;14596:248;;;:::o;14850:419::-;15016:4;15054:2;15043:9;15039:18;15031:26;;15103:9;15097:4;15093:20;15089:1;15078:9;15074:17;15067:47;15131:131;15257:4;15131:131;:::i;:::-;15123:139;;15021:248;;;:::o;15275:222::-;15368:4;15406:2;15395:9;15391:18;15383:26;;15419:71;15487:1;15476:9;15472:17;15463:6;15419:71;:::i;:::-;15373:124;;;;:::o;15503:129::-;15537:6;15564:20;;:::i;:::-;15554:30;;15593:33;15621:4;15613:6;15593:33;:::i;:::-;15544:88;;;:::o;15638:75::-;15671:6;15704:2;15698:9;15688:19;;15678:35;:::o;15719:307::-;15780:4;15870:18;15862:6;15859:30;15856:2;;;15892:18;;:::i;:::-;15856:2;15930:29;15952:6;15930:29;:::i;:::-;15922:37;;16014:4;16008;16004:15;15996:23;;15785:241;;;:::o;16032:308::-;16094:4;16184:18;16176:6;16173:30;16170:2;;;16206:18;;:::i;:::-;16170:2;16244:29;16266:6;16244:29;:::i;:::-;16236:37;;16328:4;16322;16318:15;16310:23;;16099:241;;;:::o;16346:141::-;16395:4;16418:3;16410:11;;16441:3;16438:1;16431:14;16475:4;16472:1;16462:18;16454:26;;16400:87;;;:::o;16493:98::-;16544:6;16578:5;16572:12;16562:22;;16551:40;;;:::o;16597:99::-;16649:6;16683:5;16677:12;16667:22;;16656:40;;;:::o;16702:168::-;16785:11;16819:6;16814:3;16807:19;16859:4;16854:3;16850:14;16835:29;;16797:73;;;;:::o;16876:147::-;16977:11;17014:3;16999:18;;16989:34;;;;:::o;17029:169::-;17113:11;17147:6;17142:3;17135:19;17187:4;17182:3;17178:14;17163:29;;17125:73;;;;:::o;17204:148::-;17306:11;17343:3;17328:18;;17318:34;;;;:::o;17358:305::-;17398:3;17417:20;17435:1;17417:20;:::i;:::-;17412:25;;17451:20;17469:1;17451:20;:::i;:::-;17446:25;;17605:1;17537:66;17533:74;17530:1;17527:81;17524:2;;;17611:18;;:::i;:::-;17524:2;17655:1;17652;17648:9;17641:16;;17402:261;;;;:::o;17669:185::-;17709:1;17726:20;17744:1;17726:20;:::i;:::-;17721:25;;17760:20;17778:1;17760:20;:::i;:::-;17755:25;;17799:1;17789:2;;17804:18;;:::i;:::-;17789:2;17846:1;17843;17839:9;17834:14;;17711:143;;;;:::o;17860:348::-;17900:7;17923:20;17941:1;17923:20;:::i;:::-;17918:25;;17957:20;17975:1;17957:20;:::i;:::-;17952:25;;18145:1;18077:66;18073:74;18070:1;18067:81;18062:1;18055:9;18048:17;18044:105;18041:2;;;18152:18;;:::i;:::-;18041:2;18200:1;18197;18193:9;18182:20;;17908:300;;;;:::o;18214:191::-;18254:4;18274:20;18292:1;18274:20;:::i;:::-;18269:25;;18308:20;18326:1;18308:20;:::i;:::-;18303:25;;18347:1;18344;18341:8;18338:2;;;18352:18;;:::i;:::-;18338:2;18397:1;18394;18390:9;18382:17;;18259:146;;;;:::o;18411:96::-;18448:7;18477:24;18495:5;18477:24;:::i;:::-;18466:35;;18456:51;;;:::o;18513:90::-;18547:7;18590:5;18583:13;18576:21;18565:32;;18555:48;;;:::o;18609:149::-;18645:7;18685:66;18678:5;18674:78;18663:89;;18653:105;;;:::o;18764:126::-;18801:7;18841:42;18834:5;18830:54;18819:65;;18809:81;;;:::o;18896:77::-;18933:7;18962:5;18951:16;;18941:32;;;:::o;18979:154::-;19063:6;19058:3;19053;19040:30;19125:1;19116:6;19111:3;19107:16;19100:27;19030:103;;;:::o;19139:307::-;19207:1;19217:113;19231:6;19228:1;19225:13;19217:113;;;19316:1;19311:3;19307:11;19301:18;19297:1;19292:3;19288:11;19281:39;19253:2;19250:1;19246:10;19241:15;;19217:113;;;19348:6;19345:1;19342:13;19339:2;;;19428:1;19419:6;19414:3;19410:16;19403:27;19339:2;19188:258;;;;:::o;19452:320::-;19496:6;19533:1;19527:4;19523:12;19513:22;;19580:1;19574:4;19570:12;19601:18;19591:2;;19657:4;19649:6;19645:17;19635:27;;19591:2;19719;19711:6;19708:14;19688:18;19685:38;19682:2;;;19738:18;;:::i;:::-;19682:2;19503:269;;;;:::o;19778:281::-;19861:27;19883:4;19861:27;:::i;:::-;19853:6;19849:40;19991:6;19979:10;19976:22;19955:18;19943:10;19940:34;19937:62;19934:2;;;20002:18;;:::i;:::-;19934:2;20042:10;20038:2;20031:22;19821:238;;;:::o;20065:233::-;20104:3;20127:24;20145:5;20127:24;:::i;:::-;20118:33;;20173:66;20166:5;20163:77;20160:2;;;20243:18;;:::i;:::-;20160:2;20290:1;20283:5;20279:13;20272:20;;20108:190;;;:::o;20304:176::-;20336:1;20353:20;20371:1;20353:20;:::i;:::-;20348:25;;20387:20;20405:1;20387:20;:::i;:::-;20382:25;;20426:1;20416:2;;20431:18;;:::i;:::-;20416:2;20472:1;20469;20465:9;20460:14;;20338:142;;;;:::o;20486:180::-;20534:77;20531:1;20524:88;20631:4;20628:1;20621:15;20655:4;20652:1;20645:15;20672:180;20720:77;20717:1;20710:88;20817:4;20814:1;20807:15;20841:4;20838:1;20831:15;20858:180;20906:77;20903:1;20896:88;21003:4;21000:1;20993:15;21027:4;21024:1;21017:15;21044:180;21092:77;21089:1;21082:88;21189:4;21186:1;21179:15;21213:4;21210:1;21203:15;21230:102;21271:6;21322:2;21318:7;21313:2;21306:5;21302:14;21298:28;21288:38;;21278:54;;;:::o;21338:235::-;21478:34;21474:1;21466:6;21462:14;21455:58;21547:18;21542:2;21534:6;21530:15;21523:43;21444:129;:::o;21579:225::-;21719:34;21715:1;21707:6;21703:14;21696:58;21788:8;21783:2;21775:6;21771:15;21764:33;21685:119;:::o;21810:182::-;21950:34;21946:1;21938:6;21934:14;21927:58;21916:76;:::o;21998:114::-;22104:8;:::o;22118:176::-;22258:28;22254:1;22246:6;22242:14;22235:52;22224:70;:::o;22300:122::-;22373:24;22391:5;22373:24;:::i;:::-;22366:5;22363:35;22353:2;;22412:1;22409;22402:12;22353:2;22343:79;:::o;22428:116::-;22498:21;22513:5;22498:21;:::i;:::-;22491:5;22488:32;22478:2;;22534:1;22531;22524:12;22478:2;22468:76;:::o;22550:120::-;22622:23;22639:5;22622:23;:::i;:::-;22615:5;22612:34;22602:2;;22660:1;22657;22650:12;22602:2;22592:78;:::o;22676:122::-;22749:24;22767:5;22749:24;:::i;:::-;22742:5;22739:35;22729:2;;22788:1;22785;22778:12;22729:2;22719:79;:::o

Swarm Source

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