ETH Price: $2,443.09 (+3.76%)

Token

Acatraz NFT (Acatraz)
 

Overview

Max Total Supply

18 Acatraz

Holders

6

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Acatraz
0x1c4229fad661c813a84999e9adc2f34c17fc9e88
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:
AcatrazNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-17
*/

/**
 *Submitted for verification at Etherscan.io on 2022-10-15
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.7; 
library MerkleProof {
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }
   function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
abstract contract ReentrancyGuard { 
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }
    modifier nonReentrant() {
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
   _status = _ENTERED;

        _;
        _status = _NOT_ENTERED;
    }
}

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
 
    function toString(uint256 value) internal pure returns (string memory) { 
        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }
 
    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);
    }
 
    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);
    }
}
 
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);
 
    constructor() {
        _transferOwnership(_msgSender());
    }
 
    function owner() public view virtual returns (address) {
        return _owner;
    } 
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
 
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
 
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }
 
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);


}

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

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 bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // 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`
    // - [232..255] `extraData`
    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 0;
    }

    /**
     * @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 (owner == address(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 auxiliary 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 auxiliary 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;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    using SafeMath for uint256;
    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) {
                            curr=curr.sub(1);
                            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;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * 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 Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ownerOf(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-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 {
        transferFrom(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.
     *
     * See {_mint}.
     *
     * 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 (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _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] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

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

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // 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 Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @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 AcatrazNFT is ERC721A, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;

    string public uri_common = "https://nftstorage.link/ipfs/bafkreibpsyet3ntsh534qnllbqbsvepq5tbxyj6xk3ojoaez2f3utkgs4q/";
    bool public reveal = false;

    uint256 public price = 0.1 ether;
    uint256 public collectionSize = 4444;

    uint256 public status = 0;
    uint256 public mint_perTxn = 3;
    uint256 public mint_perAdd = 3;

    uint public rewardCount = 0;
    mapping(uint => uint) public rewardAmount;
    mapping(uint => uint) public rewardClaimedCount;
    mapping(uint => uint) public supplyWhenRewardIsSubmitted;

    bytes32 public merkleRoot = 0x6dda27bb24289cd482fe990e245166cbe0ee289047013366bf025558e08fc9ce;
    function setMerkleRoot(bytes32 m) public onlyOwner{
        merkleRoot = m;
    }

    constructor() ERC721A("Acatraz NFT", "Acatraz")  {}

    function giveaway(address recipient, uint256 quantity) public onlyOwner {
        require(totalSupply().add(quantity) <= collectionSize, "Giveaway exceeds current batch!!!");
        _safeMint(recipient, quantity);
    }

    function mint_WL(uint256 quantity, bytes32[] calldata merkleproof) public payable {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify( merkleproof, merkleRoot, leaf),"Not whitelisted");
        
        require(status == 1, "Whitelist Minting not active!!");
        require(quantity <= mint_perTxn && quantity > 0, "Invalid mint quantity!!");
        require(numberMinted(msg.sender).add(quantity) <= mint_perAdd && quantity > 0, "Invalid mint quantity!!");
        require(quantity.mul(price) >= msg.value, "Insufficient eth sent for mint!!");
        require(totalSupply().add(quantity) <= collectionSize, "Mint exceeds Collection size!!");
        
        _safeMint(msg.sender, quantity);
    }

    function mint(uint256 quantity) public payable {
        require(status == 2, "Public Minting not active!!");
        require(quantity <= mint_perTxn && quantity > 0, "Invalid mint quantity!!");
        require(numberMinted(msg.sender).add(quantity) <= mint_perAdd && quantity > 0, "Invalid mint quantity!!");
        require(quantity.mul(price) >= msg.value, "Insufficient eth sent for mint!!");
        require(totalSupply().add(quantity) <= collectionSize, "Mint exceeds Collection size!!");
        
        _safeMint(msg.sender, quantity);
    }

    function startWL() public onlyOwner {
        price = 0.08 ether;
        mint_perAdd = 2;
        mint_perTxn = 2;
        status = 1;
    }
    function startPublic() public onlyOwner {
        price = 0.1 ether;
        mint_perAdd = 3;
        mint_perTxn = 3;
        status = 2;
    }

    function submitRewards() public payable onlyOwner {
        rewardCount = rewardCount.add(1);
        rewardAmount[rewardCount] = msg.value;
        supplyWhenRewardIsSubmitted[rewardCount] = totalSupply();
    }

    function claimReward() public payable {
        uint256 reward = 0;
        for(uint i = 1 ; i <= totalSupply() ; i++)
            if(ownerOf(i) == msg.sender) {
                for(uint256 j = rewardClaimedCount[i] ; j < rewardCount ; j++)
                    reward = reward.add( rewardAmount[ j + 1 ] / supplyWhenRewardIsSubmitted[ j + 1 ] );
                rewardClaimedCount[i] = rewardCount;
            }
        (bool response, ) = payable(msg.sender).call{value: reward}("");
        require(response, "Reward distribution failed!!");
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        uri_common = baseURI;
    }
    function setReveal(string memory uri) public onlyOwner() {
        reveal = !reveal;
        uri_common = uri;
    }
    function setPrice(uint256 number) public onlyOwner() {
        price = number;
    }
    function setMaxxQtPerTx(uint256 number) public onlyOwner {
        mint_perTxn = number;
    }
    function setMaxxQtPerAdd(uint256 number) public onlyOwner {
        mint_perAdd = number;
    }
    function setStatus(uint256 number) public onlyOwner {
        status = number;
    }    
    function withdraw() public onlyOwner {
        (bool response, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(response, "Reward distribution failed");
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        if(reveal)
            return string(abi.encodePacked(uri_common, (tokenId).toString(), ".json"));
        return uri_common;
    }
    function _startTokenId() pure internal override returns (uint256) {
        return 1;
    }
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"claimReward","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"merkleproof","type":"bytes32[]"}],"name":"mint_WL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mint_perAdd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint_perTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardClaimedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardCount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setMaxxQtPerAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setMaxxQtPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"m","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"submitRewards","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supplyWhenRewardIsSubmitted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"uri_common","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060598152602001620046d96059913960099080519060200190620000359291906200025f565b506000600a60006101000a81548160ff02191690831515021790555067016345785d8a0000600b5561115c600c556000600d556003600e556003600f5560006010557f6dda27bb24289cd482fe990e245166cbe0ee289047013366bf025558e08fc9ce60001b601455348015620000ab57600080fd5b506040518060400160405280600b81526020017f4163617472617a204e46540000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4163617472617a000000000000000000000000000000000000000000000000008152508160029080519060200190620001309291906200025f565b508060039080519060200190620001499291906200025f565b506200015a6200018860201b60201c565b600081905550505062000182620001766200019160201b60201c565b6200019960201b60201c565b62000374565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026d906200030f565b90600052602060002090601f016020900481019282620002915760008555620002dd565b82601f10620002ac57805160ff1916838001178555620002dd565b82800160010185558215620002dd579182015b82811115620002dc578251825591602001919060010190620002bf565b5b509050620002ec9190620002f0565b5090565b5b808211156200030b576000816000905550600101620002f1565b5090565b600060028204905060018216806200032857607f821691505b602082108114156200033f576200033e62000345565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61435580620003846000396000f3fe6080604052600436106102725760003560e01c80637c80a17f1161014f578063a0712d68116100c1578063c11442f81161007a578063c11442f8146108cc578063c87b56dd146108e3578063d32e1ca614610920578063dc33e6811461094b578063e985e9c514610988578063f2fde38b146109c557610272565b8063a0712d68146107fe578063a22cb4651461081a578063a475b5dd14610843578063abff472d1461086e578063b88a802f14610899578063b88d4fde146108a357610272565b806395dca2bc1161011357806395dca2bc146107305780639be700911461073a5780639c8e1beb146107565780639d38fd211461076d5780639ec2679214610796578063a035b1fe146107d357610272565b80637c80a17f1461064b5780637cb64759146106885780638da5cb5b146106b157806391b7f5ed146106dc57806395d89b411461070557610272565b806342842e0e116101e85780636352211e116101ac5780636352211e1461053b57806369ba1a751461057857806370a08231146105a1578063715018a6146105de57806371b3056c146105f5578063790854251461062057610272565b806342842e0e14610458578063444ff0821461048157806345c0f533146104aa57806355f804b3146104d557806357fafbf2146104fe57610272565b806318160ddd1161023a57806318160ddd1461036e5780631eb5ef5d14610399578063200d2ed2146103c257806323b872dd146103ed5780632eb4a7ab146104165780633ccfd60b1461044157610272565b806301ffc9a714610277578063050225ea146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906133f3565b6109ee565b6040516102ab9190613948565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190613386565b610a80565b005b3480156102e957600080fd5b506102f2610b68565b6040516102ff919061397e565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613496565b610bfa565b60405161033c91906138e1565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190613386565b610c76565b005b34801561037a57600080fd5b50610383610db7565b6040516103909190613b20565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb919061344d565b610dce565b005b3480156103ce57600080fd5b506103d7610e8e565b6040516103e49190613b20565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190613270565b610e94565b005b34801561042257600080fd5b5061042b6111b9565b6040516104389190613963565b60405180910390f35b34801561044d57600080fd5b506104566111bf565b005b34801561046457600080fd5b5061047f600480360381019061047a9190613270565b6112ea565b005b34801561048d57600080fd5b506104a860048036038101906104a39190613496565b61130a565b005b3480156104b657600080fd5b506104bf611390565b6040516104cc9190613b20565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f7919061344d565b611396565b005b34801561050a57600080fd5b5061052560048036038101906105209190613496565b61142c565b6040516105329190613b20565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190613496565b611444565b60405161056f91906138e1565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613496565b611456565b005b3480156105ad57600080fd5b506105c860048036038101906105c39190613203565b6114dc565b6040516105d59190613b20565b60405180910390f35b3480156105ea57600080fd5b506105f3611595565b005b34801561060157600080fd5b5061060a61161d565b6040516106179190613b20565b60405180910390f35b34801561062c57600080fd5b50610635611623565b6040516106429190613b20565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613496565b611629565b60405161067f9190613b20565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa91906133c6565b611641565b005b3480156106bd57600080fd5b506106c66116c7565b6040516106d391906138e1565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613496565b6116f1565b005b34801561071157600080fd5b5061071a611777565b604051610727919061397e565b60405180910390f35b610738611809565b005b610754600480360381019061074f91906134c3565b6118de565b005b34801561076257600080fd5b5061076b611b5c565b005b34801561077957600080fd5b50610794600480360381019061078f9190613496565b611c01565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613496565b611c87565b6040516107ca9190613b20565b60405180910390f35b3480156107df57600080fd5b506107e8611c9f565b6040516107f59190613b20565b60405180910390f35b61081860048036038101906108139190613496565b611ca5565b005b34801561082657600080fd5b50610841600480360381019061083c9190613346565b611e68565b005b34801561084f57600080fd5b50610858611fe0565b6040516108659190613948565b60405180910390f35b34801561087a57600080fd5b50610883611ff3565b604051610890919061397e565b60405180910390f35b6108a1612081565b005b3480156108af57600080fd5b506108ca60048036038101906108c591906132c3565b612247565b005b3480156108d857600080fd5b506108e16122ba565b005b3480156108ef57600080fd5b5061090a60048036038101906109059190613496565b61235f565b604051610917919061397e565b60405180910390f35b34801561092c57600080fd5b50610935612483565b6040516109429190613b20565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613203565b612489565b60405161097f9190613b20565b60405180910390f35b34801561099457600080fd5b506109af60048036038101906109aa9190613230565b61249b565b6040516109bc9190613948565b60405180910390f35b3480156109d157600080fd5b506109ec60048036038101906109e79190613203565b61252f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a795750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a88612627565b73ffffffffffffffffffffffffffffffffffffffff16610aa66116c7565b73ffffffffffffffffffffffffffffffffffffffff1614610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af390613ac0565b60405180910390fd5b600c54610b1982610b0b610db7565b61262f90919063ffffffff16565b1115610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b51906139c0565b60405180910390fd5b610b648282612645565b5050565b606060028054610b7790613dfa565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba390613dfa565b8015610bf05780601f10610bc557610100808354040283529160200191610bf0565b820191906000526020600020905b815481529060010190602001808311610bd357829003601f168201915b5050505050905090565b6000610c0582612663565b610c3b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8182611444565b90508073ffffffffffffffffffffffffffffffffffffffff16610ca26126c2565b73ffffffffffffffffffffffffffffffffffffffff1614610d0557610cce81610cc96126c2565b61249b565b610d04576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610dc16126ca565b6001546000540303905090565b610dd6612627565b73ffffffffffffffffffffffffffffffffffffffff16610df46116c7565b73ffffffffffffffffffffffffffffffffffffffff1614610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190613ac0565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff0219169083151502179055508060099080519060200190610e8a929190612fac565b5050565b600d5481565b6000610e9f826126d3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f06576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f12846127b0565b91509150610f288187610f236126c2565b6127d2565b610f7457610f3d86610f386126c2565b61249b565b610f73576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610fdb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fe88686866001612816565b8015610ff357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110c18561109d88888761281c565b7c020000000000000000000000000000000000000000000000000000000017612844565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611149576000600185019050600060046000838152602001908152602001600020541415611147576000548114611146578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111b1868686600161286f565b505050505050565b60145481565b6111c7612627565b73ffffffffffffffffffffffffffffffffffffffff166111e56116c7565b73ffffffffffffffffffffffffffffffffffffffff161461123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123290613ac0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611261906138cc565b60006040518083038185875af1925050503d806000811461129e576040519150601f19603f3d011682016040523d82523d6000602084013e6112a3565b606091505b50509050806112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de90613a80565b60405180910390fd5b50565b61130583838360405180602001604052806000815250612247565b505050565b611312612627565b73ffffffffffffffffffffffffffffffffffffffff166113306116c7565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613ac0565b60405180910390fd5b80600f8190555050565b600c5481565b61139e612627565b73ffffffffffffffffffffffffffffffffffffffff166113bc6116c7565b73ffffffffffffffffffffffffffffffffffffffff1614611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990613ac0565b60405180910390fd5b8060099080519060200190611428929190612fac565b5050565b60116020528060005260406000206000915090505481565b600061144f826126d3565b9050919050565b61145e612627565b73ffffffffffffffffffffffffffffffffffffffff1661147c6116c7565b73ffffffffffffffffffffffffffffffffffffffff16146114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990613ac0565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611544576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61159d612627565b73ffffffffffffffffffffffffffffffffffffffff166115bb6116c7565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890613ac0565b60405180910390fd5b61161b6000612875565b565b600f5481565b60105481565b60136020528060005260406000206000915090505481565b611649612627565b73ffffffffffffffffffffffffffffffffffffffff166116676116c7565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613ac0565b60405180910390fd5b8060148190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116f9612627565b73ffffffffffffffffffffffffffffffffffffffff166117176116c7565b73ffffffffffffffffffffffffffffffffffffffff161461176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490613ac0565b60405180910390fd5b80600b8190555050565b60606003805461178690613dfa565b80601f01602080910402602001604051908101604052809291908181526020018280546117b290613dfa565b80156117ff5780601f106117d4576101008083540402835291602001916117ff565b820191906000526020600020905b8154815290600101906020018083116117e257829003601f168201915b5050505050905090565b611811612627565b73ffffffffffffffffffffffffffffffffffffffff1661182f6116c7565b73ffffffffffffffffffffffffffffffffffffffff1614611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90613ac0565b60405180910390fd5b61189b600160105461262f90919063ffffffff16565b60108190555034601160006010548152602001908152602001600020819055506118c3610db7565b60136000601054815260200190815260200160002081905550565b6000336040516020016118f19190613882565b604051602081830303815290604052805190602001209050611957838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506014548361293b565b611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d90613a60565b60405180910390fd5b6001600d54146119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613a20565b60405180910390fd5b600e5484111580156119ed5750600084115b611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a23906139e0565b60405180910390fd5b600f54611a4a85611a3c33612489565b61262f90919063ffffffff16565b11158015611a585750600084115b611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e906139e0565b60405180910390fd5b34611aad600b548661295290919063ffffffff16565b1015611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590613a00565b60405180910390fd5b600c54611b0b85611afd610db7565b61262f90919063ffffffff16565b1115611b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4390613a40565b60405180910390fd5b611b563385612645565b50505050565b611b64612627565b73ffffffffffffffffffffffffffffffffffffffff16611b826116c7565b73ffffffffffffffffffffffffffffffffffffffff1614611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf90613ac0565b60405180910390fd5b67011c37937e080000600b819055506002600f819055506002600e819055506001600d81905550565b611c09612627565b73ffffffffffffffffffffffffffffffffffffffff16611c276116c7565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7490613ac0565b60405180910390fd5b80600e8190555050565b60126020528060005260406000206000915090505481565b600b5481565b6002600d5414611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190613b00565b60405180910390fd5b600e548111158015611cfc5750600081115b611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d32906139e0565b60405180910390fd5b600f54611d5982611d4b33612489565b61262f90919063ffffffff16565b11158015611d675750600081115b611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d906139e0565b60405180910390fd5b34611dbc600b548361295290919063ffffffff16565b1015611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613a00565b60405180910390fd5b600c54611e1a82611e0c610db7565b61262f90919063ffffffff16565b1115611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290613a40565b60405180910390fd5b611e653382612645565b50565b611e706126c2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ed5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ee26126c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f8f6126c2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fd49190613948565b60405180910390a35050565b600a60009054906101000a900460ff1681565b6009805461200090613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461202c90613dfa565b80156120795780601f1061204e57610100808354040283529160200191612079565b820191906000526020600020905b81548152906001019060200180831161205c57829003601f168201915b505050505081565b600080600190505b612091610db7565b8111612196573373ffffffffffffffffffffffffffffffffffffffff166120b782611444565b73ffffffffffffffffffffffffffffffffffffffff161415612183576000601260008381526020019081526020016000205490505b601054811015612167576121526013600060018461210a9190613c25565b8152602001908152602001600020546011600060018561212a9190613c25565b8152602001908152602001600020546121439190613c7b565b8461262f90919063ffffffff16565b9250808061215f90613e5d565b9150506120ec565b5060105460126000838152602001908152602001600020819055505b808061218e90613e5d565b915050612089565b5060003373ffffffffffffffffffffffffffffffffffffffff16826040516121bd906138cc565b60006040518083038185875af1925050503d80600081146121fa576040519150601f19603f3d011682016040523d82523d6000602084013e6121ff565b606091505b5050905080612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90613aa0565b60405180910390fd5b5050565b612252848484610e94565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122b45761227d84848484612968565b6122b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6122c2612627565b73ffffffffffffffffffffffffffffffffffffffff166122e06116c7565b73ffffffffffffffffffffffffffffffffffffffff1614612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90613ac0565b60405180910390fd5b67016345785d8a0000600b819055506003600f819055506003600e819055506002600d81905550565b606061236a82612663565b6123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a090613ae0565b60405180910390fd5b600a60009054906101000a900460ff16156123f05760096123c983612ac8565b6040516020016123da92919061389d565b604051602081830303815290604052905061247e565b600980546123fd90613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461242990613dfa565b80156124765780601f1061244b57610100808354040283529160200191612476565b820191906000526020600020905b81548152906001019060200180831161245957829003601f168201915b505050505090505b919050565b600e5481565b600061249482612c29565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612537612627565b73ffffffffffffffffffffffffffffffffffffffff166125556116c7565b73ffffffffffffffffffffffffffffffffffffffff16146125ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a290613ac0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561261b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612612906139a0565b60405180910390fd5b61262481612875565b50565b600033905090565b6000818361263d9190613c25565b905092915050565b61265f828260405180602001604052806000815250612c80565b5050565b60008161266e6126ca565b1115801561267d575060005482105b80156126bb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806126e26126ca565b11612779576000548110156127785760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612776575b600081141561276c5761274f600183612d1d90919063ffffffff16565b915060046000838152602001908152602001600020549050612732565b80925050506127ab565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612833868684612d33565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826129488584612d3c565b1490509392505050565b600081836129609190613cac565b905092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261298e6126c2565b8786866040518563ffffffff1660e01b81526004016129b094939291906138fc565b602060405180830381600087803b1580156129ca57600080fd5b505af19250505080156129fb57506040513d601f19601f820116820180604052508101906129f89190613420565b60015b612a75573d8060008114612a2b576040519150601f19603f3d011682016040523d82523d6000602084013e612a30565b606091505b50600081511415612a6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612b10576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c24565b600082905060005b60008214612b42578080612b2b90613e5d565b915050600a82612b3b9190613c7b565b9150612b18565b60008167ffffffffffffffff811115612b5e57612b5d613fb7565b5b6040519080825280601f01601f191660200182016040528015612b905781602001600182028036833780820191505090505b5090505b60008514612c1d57600182612ba99190613d06565b9150600a85612bb89190613eca565b6030612bc49190613c25565b60f81b818381518110612bda57612bd9613f88565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c169190613c7b565b9450612b94565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612c8a8383612db1565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612d1857600080549050600083820390505b612cca6000868380600101945086612968565b612d00576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612cb7578160005414612d1557600080fd5b50505b505050565b60008183612d2b9190613d06565b905092915050565b60009392505050565b60008082905060005b8451811015612da6576000858281518110612d6357612d62613f88565b5b60200260200101519050808311612d8557612d7e8382612f85565b9250612d92565b612d8f8184612f85565b92505b508080612d9e90613e5d565b915050612d45565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e1e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612e59576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e666000848385612816565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612edd83612ece600086600061281c565b612ed785612f9c565b17612844565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612f0157806000819055505050612f80600084838561286f565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054612fb890613dfa565b90600052602060002090601f016020900481019282612fda5760008555613021565b82601f10612ff357805160ff1916838001178555613021565b82800160010185558215613021579182015b82811115613020578251825591602001919060010190613005565b5b50905061302e9190613032565b5090565b5b8082111561304b576000816000905550600101613033565b5090565b600061306261305d84613b60565b613b3b565b90508281526020810184848401111561307e5761307d613ff5565b5b613089848285613db8565b509392505050565b60006130a461309f84613b91565b613b3b565b9050828152602081018484840111156130c0576130bf613ff5565b5b6130cb848285613db8565b509392505050565b6000813590506130e2816142ac565b92915050565b60008083601f8401126130fe576130fd613feb565b5b8235905067ffffffffffffffff81111561311b5761311a613fe6565b5b60208301915083602082028301111561313757613136613ff0565b5b9250929050565b60008135905061314d816142c3565b92915050565b600081359050613162816142da565b92915050565b600081359050613177816142f1565b92915050565b60008151905061318c816142f1565b92915050565b600082601f8301126131a7576131a6613feb565b5b81356131b784826020860161304f565b91505092915050565b600082601f8301126131d5576131d4613feb565b5b81356131e5848260208601613091565b91505092915050565b6000813590506131fd81614308565b92915050565b60006020828403121561321957613218613fff565b5b6000613227848285016130d3565b91505092915050565b6000806040838503121561324757613246613fff565b5b6000613255858286016130d3565b9250506020613266858286016130d3565b9150509250929050565b60008060006060848603121561328957613288613fff565b5b6000613297868287016130d3565b93505060206132a8868287016130d3565b92505060406132b9868287016131ee565b9150509250925092565b600080600080608085870312156132dd576132dc613fff565b5b60006132eb878288016130d3565b94505060206132fc878288016130d3565b935050604061330d878288016131ee565b925050606085013567ffffffffffffffff81111561332e5761332d613ffa565b5b61333a87828801613192565b91505092959194509250565b6000806040838503121561335d5761335c613fff565b5b600061336b858286016130d3565b925050602061337c8582860161313e565b9150509250929050565b6000806040838503121561339d5761339c613fff565b5b60006133ab858286016130d3565b92505060206133bc858286016131ee565b9150509250929050565b6000602082840312156133dc576133db613fff565b5b60006133ea84828501613153565b91505092915050565b60006020828403121561340957613408613fff565b5b600061341784828501613168565b91505092915050565b60006020828403121561343657613435613fff565b5b60006134448482850161317d565b91505092915050565b60006020828403121561346357613462613fff565b5b600082013567ffffffffffffffff81111561348157613480613ffa565b5b61348d848285016131c0565b91505092915050565b6000602082840312156134ac576134ab613fff565b5b60006134ba848285016131ee565b91505092915050565b6000806000604084860312156134dc576134db613fff565b5b60006134ea868287016131ee565b935050602084013567ffffffffffffffff81111561350b5761350a613ffa565b5b613517868287016130e8565b92509250509250925092565b61352c81613d3a565b82525050565b61354361353e82613d3a565b613ea6565b82525050565b61355281613d4c565b82525050565b61356181613d58565b82525050565b600061357282613bd7565b61357c8185613bed565b935061358c818560208601613dc7565b61359581614004565b840191505092915050565b60006135ab82613be2565b6135b58185613c09565b93506135c5818560208601613dc7565b6135ce81614004565b840191505092915050565b60006135e482613be2565b6135ee8185613c1a565b93506135fe818560208601613dc7565b80840191505092915050565b6000815461361781613dfa565b6136218186613c1a565b9450600182166000811461363c576001811461364d57613680565b60ff19831686528186019350613680565b61365685613bc2565b60005b8381101561367857815481890152600182019150602081019050613659565b838801955050505b50505092915050565b6000613696602683613c09565b91506136a182614022565b604082019050919050565b60006136b9602183613c09565b91506136c482614071565b604082019050919050565b60006136dc601783613c09565b91506136e7826140c0565b602082019050919050565b60006136ff602083613c09565b915061370a826140e9565b602082019050919050565b6000613722601e83613c09565b915061372d82614112565b602082019050919050565b6000613745601e83613c09565b91506137508261413b565b602082019050919050565b6000613768600f83613c09565b915061377382614164565b602082019050919050565b600061378b601a83613c09565b91506137968261418d565b602082019050919050565b60006137ae601c83613c09565b91506137b9826141b6565b602082019050919050565b60006137d1600583613c1a565b91506137dc826141df565b600582019050919050565b60006137f4602083613c09565b91506137ff82614208565b602082019050919050565b6000613817602f83613c09565b915061382282614231565b604082019050919050565b600061383a601b83613c09565b915061384582614280565b602082019050919050565b600061385d600083613bfe565b9150613868826142a9565b600082019050919050565b61387c81613dae565b82525050565b600061388e8284613532565b60148201915081905092915050565b60006138a9828561360a565b91506138b582846135d9565b91506138c0826137c4565b91508190509392505050565b60006138d782613850565b9150819050919050565b60006020820190506138f66000830184613523565b92915050565b60006080820190506139116000830187613523565b61391e6020830186613523565b61392b6040830185613873565b818103606083015261393d8184613567565b905095945050505050565b600060208201905061395d6000830184613549565b92915050565b60006020820190506139786000830184613558565b92915050565b6000602082019050818103600083015261399881846135a0565b905092915050565b600060208201905081810360008301526139b981613689565b9050919050565b600060208201905081810360008301526139d9816136ac565b9050919050565b600060208201905081810360008301526139f9816136cf565b9050919050565b60006020820190508181036000830152613a19816136f2565b9050919050565b60006020820190508181036000830152613a3981613715565b9050919050565b60006020820190508181036000830152613a5981613738565b9050919050565b60006020820190508181036000830152613a798161375b565b9050919050565b60006020820190508181036000830152613a998161377e565b9050919050565b60006020820190508181036000830152613ab9816137a1565b9050919050565b60006020820190508181036000830152613ad9816137e7565b9050919050565b60006020820190508181036000830152613af98161380a565b9050919050565b60006020820190508181036000830152613b198161382d565b9050919050565b6000602082019050613b356000830184613873565b92915050565b6000613b45613b56565b9050613b518282613e2c565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7b57613b7a613fb7565b5b613b8482614004565b9050602081019050919050565b600067ffffffffffffffff821115613bac57613bab613fb7565b5b613bb582614004565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c3082613dae565b9150613c3b83613dae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7057613c6f613efb565b5b828201905092915050565b6000613c8682613dae565b9150613c9183613dae565b925082613ca157613ca0613f2a565b5b828204905092915050565b6000613cb782613dae565b9150613cc283613dae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cfb57613cfa613efb565b5b828202905092915050565b6000613d1182613dae565b9150613d1c83613dae565b925082821015613d2f57613d2e613efb565b5b828203905092915050565b6000613d4582613d8e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613de5578082015181840152602081019050613dca565b83811115613df4576000848401525b50505050565b60006002820490506001821680613e1257607f821691505b60208210811415613e2657613e25613f59565b5b50919050565b613e3582614004565b810181811067ffffffffffffffff82111715613e5457613e53613fb7565b5b80604052505050565b6000613e6882613dae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e9b57613e9a613efb565b5b600182019050919050565b6000613eb182613eb8565b9050919050565b6000613ec382614015565b9050919050565b6000613ed582613dae565b9150613ee083613dae565b925082613ef057613eef613f2a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f476976656177617920657863656564732063757272656e74206261746368212160008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e74207175616e746974792121000000000000000000600082015250565b7f496e73756666696369656e74206574682073656e7420666f72206d696e742121600082015250565b7f57686974656c697374204d696e74696e67206e6f742061637469766521210000600082015250565b7f4d696e74206578636565647320436f6c6c656374696f6e2073697a6521210000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f52657761726420646973747269627574696f6e206661696c6564000000000000600082015250565b7f52657761726420646973747269627574696f6e206661696c6564212100000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c6963204d696e74696e67206e6f742061637469766521210000000000600082015250565b50565b6142b581613d3a565b81146142c057600080fd5b50565b6142cc81613d4c565b81146142d757600080fd5b50565b6142e381613d58565b81146142ee57600080fd5b50565b6142fa81613d62565b811461430557600080fd5b50565b61431181613dae565b811461431c57600080fd5b5056fea26469706673582212208f63949a738a34fa6ffb27d962a37f15912a5a5bfefddadfbf4f245e662419f564736f6c6343000807003368747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f6261666b726569627073796574336e747368353334716e6c6c627162737665707135746278796a36786b336f6a6f61657a32663375746b677334712f

Deployed Bytecode

0x6080604052600436106102725760003560e01c80637c80a17f1161014f578063a0712d68116100c1578063c11442f81161007a578063c11442f8146108cc578063c87b56dd146108e3578063d32e1ca614610920578063dc33e6811461094b578063e985e9c514610988578063f2fde38b146109c557610272565b8063a0712d68146107fe578063a22cb4651461081a578063a475b5dd14610843578063abff472d1461086e578063b88a802f14610899578063b88d4fde146108a357610272565b806395dca2bc1161011357806395dca2bc146107305780639be700911461073a5780639c8e1beb146107565780639d38fd211461076d5780639ec2679214610796578063a035b1fe146107d357610272565b80637c80a17f1461064b5780637cb64759146106885780638da5cb5b146106b157806391b7f5ed146106dc57806395d89b411461070557610272565b806342842e0e116101e85780636352211e116101ac5780636352211e1461053b57806369ba1a751461057857806370a08231146105a1578063715018a6146105de57806371b3056c146105f5578063790854251461062057610272565b806342842e0e14610458578063444ff0821461048157806345c0f533146104aa57806355f804b3146104d557806357fafbf2146104fe57610272565b806318160ddd1161023a57806318160ddd1461036e5780631eb5ef5d14610399578063200d2ed2146103c257806323b872dd146103ed5780632eb4a7ab146104165780633ccfd60b1461044157610272565b806301ffc9a714610277578063050225ea146102b457806306fdde03146102dd578063081812fc14610308578063095ea7b314610345575b600080fd5b34801561028357600080fd5b5061029e600480360381019061029991906133f3565b6109ee565b6040516102ab9190613948565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190613386565b610a80565b005b3480156102e957600080fd5b506102f2610b68565b6040516102ff919061397e565b60405180910390f35b34801561031457600080fd5b5061032f600480360381019061032a9190613496565b610bfa565b60405161033c91906138e1565b60405180910390f35b34801561035157600080fd5b5061036c60048036038101906103679190613386565b610c76565b005b34801561037a57600080fd5b50610383610db7565b6040516103909190613b20565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb919061344d565b610dce565b005b3480156103ce57600080fd5b506103d7610e8e565b6040516103e49190613b20565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f9190613270565b610e94565b005b34801561042257600080fd5b5061042b6111b9565b6040516104389190613963565b60405180910390f35b34801561044d57600080fd5b506104566111bf565b005b34801561046457600080fd5b5061047f600480360381019061047a9190613270565b6112ea565b005b34801561048d57600080fd5b506104a860048036038101906104a39190613496565b61130a565b005b3480156104b657600080fd5b506104bf611390565b6040516104cc9190613b20565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f7919061344d565b611396565b005b34801561050a57600080fd5b5061052560048036038101906105209190613496565b61142c565b6040516105329190613b20565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190613496565b611444565b60405161056f91906138e1565b60405180910390f35b34801561058457600080fd5b5061059f600480360381019061059a9190613496565b611456565b005b3480156105ad57600080fd5b506105c860048036038101906105c39190613203565b6114dc565b6040516105d59190613b20565b60405180910390f35b3480156105ea57600080fd5b506105f3611595565b005b34801561060157600080fd5b5061060a61161d565b6040516106179190613b20565b60405180910390f35b34801561062c57600080fd5b50610635611623565b6040516106429190613b20565b60405180910390f35b34801561065757600080fd5b50610672600480360381019061066d9190613496565b611629565b60405161067f9190613b20565b60405180910390f35b34801561069457600080fd5b506106af60048036038101906106aa91906133c6565b611641565b005b3480156106bd57600080fd5b506106c66116c7565b6040516106d391906138e1565b60405180910390f35b3480156106e857600080fd5b5061070360048036038101906106fe9190613496565b6116f1565b005b34801561071157600080fd5b5061071a611777565b604051610727919061397e565b60405180910390f35b610738611809565b005b610754600480360381019061074f91906134c3565b6118de565b005b34801561076257600080fd5b5061076b611b5c565b005b34801561077957600080fd5b50610794600480360381019061078f9190613496565b611c01565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613496565b611c87565b6040516107ca9190613b20565b60405180910390f35b3480156107df57600080fd5b506107e8611c9f565b6040516107f59190613b20565b60405180910390f35b61081860048036038101906108139190613496565b611ca5565b005b34801561082657600080fd5b50610841600480360381019061083c9190613346565b611e68565b005b34801561084f57600080fd5b50610858611fe0565b6040516108659190613948565b60405180910390f35b34801561087a57600080fd5b50610883611ff3565b604051610890919061397e565b60405180910390f35b6108a1612081565b005b3480156108af57600080fd5b506108ca60048036038101906108c591906132c3565b612247565b005b3480156108d857600080fd5b506108e16122ba565b005b3480156108ef57600080fd5b5061090a60048036038101906109059190613496565b61235f565b604051610917919061397e565b60405180910390f35b34801561092c57600080fd5b50610935612483565b6040516109429190613b20565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613203565b612489565b60405161097f9190613b20565b60405180910390f35b34801561099457600080fd5b506109af60048036038101906109aa9190613230565b61249b565b6040516109bc9190613948565b60405180910390f35b3480156109d157600080fd5b506109ec60048036038101906109e79190613203565b61252f565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a795750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610a88612627565b73ffffffffffffffffffffffffffffffffffffffff16610aa66116c7565b73ffffffffffffffffffffffffffffffffffffffff1614610afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af390613ac0565b60405180910390fd5b600c54610b1982610b0b610db7565b61262f90919063ffffffff16565b1115610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b51906139c0565b60405180910390fd5b610b648282612645565b5050565b606060028054610b7790613dfa565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba390613dfa565b8015610bf05780601f10610bc557610100808354040283529160200191610bf0565b820191906000526020600020905b815481529060010190602001808311610bd357829003601f168201915b5050505050905090565b6000610c0582612663565b610c3b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c8182611444565b90508073ffffffffffffffffffffffffffffffffffffffff16610ca26126c2565b73ffffffffffffffffffffffffffffffffffffffff1614610d0557610cce81610cc96126c2565b61249b565b610d04576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610dc16126ca565b6001546000540303905090565b610dd6612627565b73ffffffffffffffffffffffffffffffffffffffff16610df46116c7565b73ffffffffffffffffffffffffffffffffffffffff1614610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190613ac0565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff0219169083151502179055508060099080519060200190610e8a929190612fac565b5050565b600d5481565b6000610e9f826126d3565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f06576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f12846127b0565b91509150610f288187610f236126c2565b6127d2565b610f7457610f3d86610f386126c2565b61249b565b610f73576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610fdb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fe88686866001612816565b8015610ff357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506110c18561109d88888761281c565b7c020000000000000000000000000000000000000000000000000000000017612844565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611149576000600185019050600060046000838152602001908152602001600020541415611147576000548114611146578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46111b1868686600161286f565b505050505050565b60145481565b6111c7612627565b73ffffffffffffffffffffffffffffffffffffffff166111e56116c7565b73ffffffffffffffffffffffffffffffffffffffff161461123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123290613ac0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611261906138cc565b60006040518083038185875af1925050503d806000811461129e576040519150601f19603f3d011682016040523d82523d6000602084013e6112a3565b606091505b50509050806112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de90613a80565b60405180910390fd5b50565b61130583838360405180602001604052806000815250612247565b505050565b611312612627565b73ffffffffffffffffffffffffffffffffffffffff166113306116c7565b73ffffffffffffffffffffffffffffffffffffffff1614611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90613ac0565b60405180910390fd5b80600f8190555050565b600c5481565b61139e612627565b73ffffffffffffffffffffffffffffffffffffffff166113bc6116c7565b73ffffffffffffffffffffffffffffffffffffffff1614611412576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140990613ac0565b60405180910390fd5b8060099080519060200190611428929190612fac565b5050565b60116020528060005260406000206000915090505481565b600061144f826126d3565b9050919050565b61145e612627565b73ffffffffffffffffffffffffffffffffffffffff1661147c6116c7565b73ffffffffffffffffffffffffffffffffffffffff16146114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990613ac0565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611544576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61159d612627565b73ffffffffffffffffffffffffffffffffffffffff166115bb6116c7565b73ffffffffffffffffffffffffffffffffffffffff1614611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890613ac0565b60405180910390fd5b61161b6000612875565b565b600f5481565b60105481565b60136020528060005260406000206000915090505481565b611649612627565b73ffffffffffffffffffffffffffffffffffffffff166116676116c7565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613ac0565b60405180910390fd5b8060148190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116f9612627565b73ffffffffffffffffffffffffffffffffffffffff166117176116c7565b73ffffffffffffffffffffffffffffffffffffffff161461176d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176490613ac0565b60405180910390fd5b80600b8190555050565b60606003805461178690613dfa565b80601f01602080910402602001604051908101604052809291908181526020018280546117b290613dfa565b80156117ff5780601f106117d4576101008083540402835291602001916117ff565b820191906000526020600020905b8154815290600101906020018083116117e257829003601f168201915b5050505050905090565b611811612627565b73ffffffffffffffffffffffffffffffffffffffff1661182f6116c7565b73ffffffffffffffffffffffffffffffffffffffff1614611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90613ac0565b60405180910390fd5b61189b600160105461262f90919063ffffffff16565b60108190555034601160006010548152602001908152602001600020819055506118c3610db7565b60136000601054815260200190815260200160002081905550565b6000336040516020016118f19190613882565b604051602081830303815290604052805190602001209050611957838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050506014548361293b565b611996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198d90613a60565b60405180910390fd5b6001600d54146119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d290613a20565b60405180910390fd5b600e5484111580156119ed5750600084115b611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a23906139e0565b60405180910390fd5b600f54611a4a85611a3c33612489565b61262f90919063ffffffff16565b11158015611a585750600084115b611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e906139e0565b60405180910390fd5b34611aad600b548661295290919063ffffffff16565b1015611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590613a00565b60405180910390fd5b600c54611b0b85611afd610db7565b61262f90919063ffffffff16565b1115611b4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4390613a40565b60405180910390fd5b611b563385612645565b50505050565b611b64612627565b73ffffffffffffffffffffffffffffffffffffffff16611b826116c7565b73ffffffffffffffffffffffffffffffffffffffff1614611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf90613ac0565b60405180910390fd5b67011c37937e080000600b819055506002600f819055506002600e819055506001600d81905550565b611c09612627565b73ffffffffffffffffffffffffffffffffffffffff16611c276116c7565b73ffffffffffffffffffffffffffffffffffffffff1614611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7490613ac0565b60405180910390fd5b80600e8190555050565b60126020528060005260406000206000915090505481565b600b5481565b6002600d5414611cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce190613b00565b60405180910390fd5b600e548111158015611cfc5750600081115b611d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d32906139e0565b60405180910390fd5b600f54611d5982611d4b33612489565b61262f90919063ffffffff16565b11158015611d675750600081115b611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d906139e0565b60405180910390fd5b34611dbc600b548361295290919063ffffffff16565b1015611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613a00565b60405180910390fd5b600c54611e1a82611e0c610db7565b61262f90919063ffffffff16565b1115611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5290613a40565b60405180910390fd5b611e653382612645565b50565b611e706126c2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ed5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611ee26126c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611f8f6126c2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611fd49190613948565b60405180910390a35050565b600a60009054906101000a900460ff1681565b6009805461200090613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461202c90613dfa565b80156120795780601f1061204e57610100808354040283529160200191612079565b820191906000526020600020905b81548152906001019060200180831161205c57829003601f168201915b505050505081565b600080600190505b612091610db7565b8111612196573373ffffffffffffffffffffffffffffffffffffffff166120b782611444565b73ffffffffffffffffffffffffffffffffffffffff161415612183576000601260008381526020019081526020016000205490505b601054811015612167576121526013600060018461210a9190613c25565b8152602001908152602001600020546011600060018561212a9190613c25565b8152602001908152602001600020546121439190613c7b565b8461262f90919063ffffffff16565b9250808061215f90613e5d565b9150506120ec565b5060105460126000838152602001908152602001600020819055505b808061218e90613e5d565b915050612089565b5060003373ffffffffffffffffffffffffffffffffffffffff16826040516121bd906138cc565b60006040518083038185875af1925050503d80600081146121fa576040519150601f19603f3d011682016040523d82523d6000602084013e6121ff565b606091505b5050905080612243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223a90613aa0565b60405180910390fd5b5050565b612252848484610e94565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122b45761227d84848484612968565b6122b3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6122c2612627565b73ffffffffffffffffffffffffffffffffffffffff166122e06116c7565b73ffffffffffffffffffffffffffffffffffffffff1614612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d90613ac0565b60405180910390fd5b67016345785d8a0000600b819055506003600f819055506003600e819055506002600d81905550565b606061236a82612663565b6123a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a090613ae0565b60405180910390fd5b600a60009054906101000a900460ff16156123f05760096123c983612ac8565b6040516020016123da92919061389d565b604051602081830303815290604052905061247e565b600980546123fd90613dfa565b80601f016020809104026020016040519081016040528092919081815260200182805461242990613dfa565b80156124765780601f1061244b57610100808354040283529160200191612476565b820191906000526020600020905b81548152906001019060200180831161245957829003601f168201915b505050505090505b919050565b600e5481565b600061249482612c29565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612537612627565b73ffffffffffffffffffffffffffffffffffffffff166125556116c7565b73ffffffffffffffffffffffffffffffffffffffff16146125ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a290613ac0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561261b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612612906139a0565b60405180910390fd5b61262481612875565b50565b600033905090565b6000818361263d9190613c25565b905092915050565b61265f828260405180602001604052806000815250612c80565b5050565b60008161266e6126ca565b1115801561267d575060005482105b80156126bb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806126e26126ca565b11612779576000548110156127785760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612776575b600081141561276c5761274f600183612d1d90919063ffffffff16565b915060046000838152602001908152602001600020549050612732565b80925050506127ab565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612833868684612d33565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826129488584612d3c565b1490509392505050565b600081836129609190613cac565b905092915050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261298e6126c2565b8786866040518563ffffffff1660e01b81526004016129b094939291906138fc565b602060405180830381600087803b1580156129ca57600080fd5b505af19250505080156129fb57506040513d601f19601f820116820180604052508101906129f89190613420565b60015b612a75573d8060008114612a2b576040519150601f19603f3d011682016040523d82523d6000602084013e612a30565b606091505b50600081511415612a6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612b10576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c24565b600082905060005b60008214612b42578080612b2b90613e5d565b915050600a82612b3b9190613c7b565b9150612b18565b60008167ffffffffffffffff811115612b5e57612b5d613fb7565b5b6040519080825280601f01601f191660200182016040528015612b905781602001600182028036833780820191505090505b5090505b60008514612c1d57600182612ba99190613d06565b9150600a85612bb89190613eca565b6030612bc49190613c25565b60f81b818381518110612bda57612bd9613f88565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c169190613c7b565b9450612b94565b8093505050505b919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612c8a8383612db1565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612d1857600080549050600083820390505b612cca6000868380600101945086612968565b612d00576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612cb7578160005414612d1557600080fd5b50505b505050565b60008183612d2b9190613d06565b905092915050565b60009392505050565b60008082905060005b8451811015612da6576000858281518110612d6357612d62613f88565b5b60200260200101519050808311612d8557612d7e8382612f85565b9250612d92565b612d8f8184612f85565b92505b508080612d9e90613e5d565b915050612d45565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e1e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612e59576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e666000848385612816565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612edd83612ece600086600061281c565b612ed785612f9c565b17612844565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612f0157806000819055505050612f80600084838561286f565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054612fb890613dfa565b90600052602060002090601f016020900481019282612fda5760008555613021565b82601f10612ff357805160ff1916838001178555613021565b82800160010185558215613021579182015b82811115613020578251825591602001919060010190613005565b5b50905061302e9190613032565b5090565b5b8082111561304b576000816000905550600101613033565b5090565b600061306261305d84613b60565b613b3b565b90508281526020810184848401111561307e5761307d613ff5565b5b613089848285613db8565b509392505050565b60006130a461309f84613b91565b613b3b565b9050828152602081018484840111156130c0576130bf613ff5565b5b6130cb848285613db8565b509392505050565b6000813590506130e2816142ac565b92915050565b60008083601f8401126130fe576130fd613feb565b5b8235905067ffffffffffffffff81111561311b5761311a613fe6565b5b60208301915083602082028301111561313757613136613ff0565b5b9250929050565b60008135905061314d816142c3565b92915050565b600081359050613162816142da565b92915050565b600081359050613177816142f1565b92915050565b60008151905061318c816142f1565b92915050565b600082601f8301126131a7576131a6613feb565b5b81356131b784826020860161304f565b91505092915050565b600082601f8301126131d5576131d4613feb565b5b81356131e5848260208601613091565b91505092915050565b6000813590506131fd81614308565b92915050565b60006020828403121561321957613218613fff565b5b6000613227848285016130d3565b91505092915050565b6000806040838503121561324757613246613fff565b5b6000613255858286016130d3565b9250506020613266858286016130d3565b9150509250929050565b60008060006060848603121561328957613288613fff565b5b6000613297868287016130d3565b93505060206132a8868287016130d3565b92505060406132b9868287016131ee565b9150509250925092565b600080600080608085870312156132dd576132dc613fff565b5b60006132eb878288016130d3565b94505060206132fc878288016130d3565b935050604061330d878288016131ee565b925050606085013567ffffffffffffffff81111561332e5761332d613ffa565b5b61333a87828801613192565b91505092959194509250565b6000806040838503121561335d5761335c613fff565b5b600061336b858286016130d3565b925050602061337c8582860161313e565b9150509250929050565b6000806040838503121561339d5761339c613fff565b5b60006133ab858286016130d3565b92505060206133bc858286016131ee565b9150509250929050565b6000602082840312156133dc576133db613fff565b5b60006133ea84828501613153565b91505092915050565b60006020828403121561340957613408613fff565b5b600061341784828501613168565b91505092915050565b60006020828403121561343657613435613fff565b5b60006134448482850161317d565b91505092915050565b60006020828403121561346357613462613fff565b5b600082013567ffffffffffffffff81111561348157613480613ffa565b5b61348d848285016131c0565b91505092915050565b6000602082840312156134ac576134ab613fff565b5b60006134ba848285016131ee565b91505092915050565b6000806000604084860312156134dc576134db613fff565b5b60006134ea868287016131ee565b935050602084013567ffffffffffffffff81111561350b5761350a613ffa565b5b613517868287016130e8565b92509250509250925092565b61352c81613d3a565b82525050565b61354361353e82613d3a565b613ea6565b82525050565b61355281613d4c565b82525050565b61356181613d58565b82525050565b600061357282613bd7565b61357c8185613bed565b935061358c818560208601613dc7565b61359581614004565b840191505092915050565b60006135ab82613be2565b6135b58185613c09565b93506135c5818560208601613dc7565b6135ce81614004565b840191505092915050565b60006135e482613be2565b6135ee8185613c1a565b93506135fe818560208601613dc7565b80840191505092915050565b6000815461361781613dfa565b6136218186613c1a565b9450600182166000811461363c576001811461364d57613680565b60ff19831686528186019350613680565b61365685613bc2565b60005b8381101561367857815481890152600182019150602081019050613659565b838801955050505b50505092915050565b6000613696602683613c09565b91506136a182614022565b604082019050919050565b60006136b9602183613c09565b91506136c482614071565b604082019050919050565b60006136dc601783613c09565b91506136e7826140c0565b602082019050919050565b60006136ff602083613c09565b915061370a826140e9565b602082019050919050565b6000613722601e83613c09565b915061372d82614112565b602082019050919050565b6000613745601e83613c09565b91506137508261413b565b602082019050919050565b6000613768600f83613c09565b915061377382614164565b602082019050919050565b600061378b601a83613c09565b91506137968261418d565b602082019050919050565b60006137ae601c83613c09565b91506137b9826141b6565b602082019050919050565b60006137d1600583613c1a565b91506137dc826141df565b600582019050919050565b60006137f4602083613c09565b91506137ff82614208565b602082019050919050565b6000613817602f83613c09565b915061382282614231565b604082019050919050565b600061383a601b83613c09565b915061384582614280565b602082019050919050565b600061385d600083613bfe565b9150613868826142a9565b600082019050919050565b61387c81613dae565b82525050565b600061388e8284613532565b60148201915081905092915050565b60006138a9828561360a565b91506138b582846135d9565b91506138c0826137c4565b91508190509392505050565b60006138d782613850565b9150819050919050565b60006020820190506138f66000830184613523565b92915050565b60006080820190506139116000830187613523565b61391e6020830186613523565b61392b6040830185613873565b818103606083015261393d8184613567565b905095945050505050565b600060208201905061395d6000830184613549565b92915050565b60006020820190506139786000830184613558565b92915050565b6000602082019050818103600083015261399881846135a0565b905092915050565b600060208201905081810360008301526139b981613689565b9050919050565b600060208201905081810360008301526139d9816136ac565b9050919050565b600060208201905081810360008301526139f9816136cf565b9050919050565b60006020820190508181036000830152613a19816136f2565b9050919050565b60006020820190508181036000830152613a3981613715565b9050919050565b60006020820190508181036000830152613a5981613738565b9050919050565b60006020820190508181036000830152613a798161375b565b9050919050565b60006020820190508181036000830152613a998161377e565b9050919050565b60006020820190508181036000830152613ab9816137a1565b9050919050565b60006020820190508181036000830152613ad9816137e7565b9050919050565b60006020820190508181036000830152613af98161380a565b9050919050565b60006020820190508181036000830152613b198161382d565b9050919050565b6000602082019050613b356000830184613873565b92915050565b6000613b45613b56565b9050613b518282613e2c565b919050565b6000604051905090565b600067ffffffffffffffff821115613b7b57613b7a613fb7565b5b613b8482614004565b9050602081019050919050565b600067ffffffffffffffff821115613bac57613bab613fb7565b5b613bb582614004565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613c3082613dae565b9150613c3b83613dae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c7057613c6f613efb565b5b828201905092915050565b6000613c8682613dae565b9150613c9183613dae565b925082613ca157613ca0613f2a565b5b828204905092915050565b6000613cb782613dae565b9150613cc283613dae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cfb57613cfa613efb565b5b828202905092915050565b6000613d1182613dae565b9150613d1c83613dae565b925082821015613d2f57613d2e613efb565b5b828203905092915050565b6000613d4582613d8e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613de5578082015181840152602081019050613dca565b83811115613df4576000848401525b50505050565b60006002820490506001821680613e1257607f821691505b60208210811415613e2657613e25613f59565b5b50919050565b613e3582614004565b810181811067ffffffffffffffff82111715613e5457613e53613fb7565b5b80604052505050565b6000613e6882613dae565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e9b57613e9a613efb565b5b600182019050919050565b6000613eb182613eb8565b9050919050565b6000613ec382614015565b9050919050565b6000613ed582613dae565b9150613ee083613dae565b925082613ef057613eef613f2a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f476976656177617920657863656564732063757272656e74206261746368212160008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e74207175616e746974792121000000000000000000600082015250565b7f496e73756666696369656e74206574682073656e7420666f72206d696e742121600082015250565b7f57686974656c697374204d696e74696e67206e6f742061637469766521210000600082015250565b7f4d696e74206578636565647320436f6c6c656374696f6e2073697a6521210000600082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f52657761726420646973747269627574696f6e206661696c6564000000000000600082015250565b7f52657761726420646973747269627574696f6e206661696c6564212100000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5075626c6963204d696e74696e67206e6f742061637469766521210000000000600082015250565b50565b6142b581613d3a565b81146142c057600080fd5b50565b6142cc81613d4c565b81146142d757600080fd5b50565b6142e381613d58565b81146142ee57600080fd5b50565b6142fa81613d62565b811461430557600080fd5b50565b61431181613dae565b811461431c57600080fd5b5056fea26469706673582212208f63949a738a34fa6ffb27d962a37f15912a5a5bfefddadfbf4f245e662419f564736f6c63430008070033

Deployed Bytecode Sourcemap

54634:4939:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24424:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55552:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30149:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32095:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31643:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23478:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58322:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54992:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41360:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55301:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58840:192;;;;;;;;;;;;;:::i;:::-;;32985:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58641:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54947:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58217:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55134:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29938:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58744:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25103:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10185:103;;;;;;;;;;;;;:::i;:::-;;55061:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55100:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55236:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55402:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9962:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58447:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30318:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57425:216;;;:::i;:::-;;55783:759;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57116:146;;;;;;;;;;;;;:::i;:::-;;58539:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55182:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54908:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56550:558;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32371:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54873:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54748:118;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57649:560;;;:::i;:::-;;33241:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57268:149;;;;;;;;;;;;;:::i;:::-;;59040:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55024:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59457:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32750:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10297:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24424:615;24509:4;24824:10;24809:25;;:11;:25;;;;:102;;;;24901:10;24886:25;;:11;:25;;;;24809:102;:179;;;;24978:10;24963:25;;:11;:25;;;;24809:179;24789:199;;24424:615;;;:::o;55552:223::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55674:14:::1;;55643:27;55661:8;55643:13;:11;:13::i;:::-;:17;;:27;;;;:::i;:::-;:45;;55635:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;55737:30;55747:9;55758:8;55737:9;:30::i;:::-;55552:223:::0;;:::o;30149:100::-;30203:13;30236:5;30229:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30149:100;:::o;32095:204::-;32163:7;32188:16;32196:7;32188;:16::i;:::-;32183:64;;32213:34;;;;;;;;;;;;;;32183:64;32267:15;:24;32283:7;32267:24;;;;;;;;;;;;;;;;;;;;;32260:31;;32095:204;;;:::o;31643:386::-;31716:13;31732:16;31740:7;31732;:16::i;:::-;31716:32;;31788:5;31765:28;;:19;:17;:19::i;:::-;:28;;;31761:175;;31813:44;31830:5;31837:19;:17;:19::i;:::-;31813:16;:44::i;:::-;31808:128;;31885:35;;;;;;;;;;;;;;31808:128;31761:175;31975:2;31948:15;:24;31964:7;31948:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;32013:7;32009:2;31993:28;;32002:5;31993:28;;;;;;;;;;;;31705:324;31643:386;;:::o;23478:315::-;23531:7;23759:15;:13;:15::i;:::-;23744:12;;23728:13;;:28;:46;23721:53;;23478:315;:::o;58322:119::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58400:6:::1;;;;;;;;;;;58399:7;58390:6;;:16;;;;;;;;;;;;;;;;;;58430:3;58417:10;:16;;;;;;;;;;;;:::i;:::-;;58322:119:::0;:::o;54992:25::-;;;;:::o;41360:2800::-;41494:27;41524;41543:7;41524:18;:27::i;:::-;41494:57;;41609:4;41568:45;;41584:19;41568:45;;;41564:86;;41622:28;;;;;;;;;;;;;;41564:86;41664:27;41693:23;41720:28;41740:7;41720:19;:28::i;:::-;41663:85;;;;41848:62;41867:15;41884:4;41890:19;:17;:19::i;:::-;41848:18;:62::i;:::-;41843:174;;41930:43;41947:4;41953:19;:17;:19::i;:::-;41930:16;:43::i;:::-;41925:92;;41982:35;;;;;;;;;;;;;;41925:92;41843:174;42048:1;42034:16;;:2;:16;;;42030:52;;;42059:23;;;;;;;;;;;;;;42030:52;42095:43;42117:4;42123:2;42127:7;42136:1;42095:21;:43::i;:::-;42231:15;42228:160;;;42371:1;42350:19;42343:30;42228:160;42766:18;:24;42785:4;42766:24;;;;;;;;;;;;;;;;42764:26;;;;;;;;;;;;42835:18;:22;42854:2;42835:22;;;;;;;;;;;;;;;;42833:24;;;;;;;;;;;43157:145;43194:2;43242:45;43257:4;43263:2;43267:19;43242:14;:45::i;:::-;20706:8;43215:72;43157:18;:145::i;:::-;43128:17;:26;43146:7;43128:26;;;;;;;;;;;:174;;;;43472:1;20706:8;43422:19;:46;:51;43418:626;;;43494:19;43526:1;43516:7;:11;43494:33;;43683:1;43649:17;:30;43667:11;43649:30;;;;;;;;;;;;:35;43645:384;;;43787:13;;43772:11;:28;43768:242;;43967:19;43934:17;:30;43952:11;43934:30;;;;;;;;;;;:52;;;;43768:242;43645:384;43475:569;43418:626;44091:7;44087:2;44072:27;;44081:4;44072:27;;;;;;;;;;;;44110:42;44131:4;44137:2;44141:7;44150:1;44110:20;:42::i;:::-;41483:2677;;;41360:2800;;;:::o;55301:94::-;;;;:::o;58840:192::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58889:13:::1;58916:10;58908:24;;58940:21;58908:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58888:78;;;58985:8;58977:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;58877:155;58840:192::o:0;32985:185::-;33123:39;33140:4;33146:2;33150:7;33123:39;;;;;;;;;;;;:16;:39::i;:::-;32985:185;;;:::o;58641:97::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58724:6:::1;58710:11;:20;;;;58641:97:::0;:::o;54947:36::-;;;;:::o;58217:99::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58301:7:::1;58288:10;:20;;;;;;;;;;;;:::i;:::-;;58217:99:::0;:::o;55134:41::-;;;;;;;;;;;;;;;;;:::o;29938:144::-;30002:7;30045:27;30064:7;30045:18;:27::i;:::-;30022:52;;29938:144;;;:::o;58744:86::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58816:6:::1;58807;:15;;;;58744:86:::0;:::o;25103:224::-;25167:7;25208:1;25191:19;;:5;:19;;;25187:60;;;25219:28;;;;;;;;;;;;;;25187:60;19658:13;25265:18;:25;25284:5;25265:25;;;;;;;;;;;;;;;;:54;25258:61;;25103:224;;;:::o;10185:103::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10250:30:::1;10277:1;10250:18;:30::i;:::-;10185:103::o:0;55061:30::-;;;;:::o;55100:27::-;;;;:::o;55236:56::-;;;;;;;;;;;;;;;;;:::o;55402:83::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55476:1:::1;55463:10;:14;;;;55402:83:::0;:::o;9962:87::-;10008:7;10035:6;;;;;;;;;;;10028:13;;9962:87;:::o;58447:86::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58519:6:::1;58511:5;:14;;;;58447:86:::0;:::o;30318:104::-;30374:13;30407:7;30400:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30318:104;:::o;57425:216::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57500:18:::1;57516:1;57500:11;;:15;;:18;;;;:::i;:::-;57486:11;:32;;;;57557:9;57529:12;:25;57542:11;;57529:25;;;;;;;;;;;:37;;;;57620:13;:11;:13::i;:::-;57577:27;:40;57605:11;;57577:40;;;;;;;;;;;:56;;;;57425:216::o:0;55783:759::-;55876:12;55918:10;55901:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;55891:39;;;;;;55876:54;;55949:50;55969:11;;55949:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55982:10;;55994:4;55949:18;:50::i;:::-;55941:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;56057:1;56047:6;;:11;56039:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;56124:11;;56112:8;:23;;:39;;;;;56150:1;56139:8;:12;56112:39;56104:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;56240:11;;56198:38;56227:8;56198:24;56211:10;56198:12;:24::i;:::-;:28;;:38;;;;:::i;:::-;:53;;:69;;;;;56266:1;56255:8;:12;56198:69;56190:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;56337:9;56314:19;56327:5;;56314:8;:12;;:19;;;;:::i;:::-;:32;;56306:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;56433:14;;56402:27;56420:8;56402:13;:11;:13::i;:::-;:17;;:27;;;;:::i;:::-;:45;;56394:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;56503:31;56513:10;56525:8;56503:9;:31::i;:::-;55865:677;55783:759;;;:::o;57116:146::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57171:10:::1;57163:5;:18;;;;57206:1;57192:11;:15;;;;57232:1;57218:11;:15;;;;57253:1;57244:6;:10;;;;57116:146::o:0;58539:96::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58621:6:::1;58607:11;:20;;;;58539:96:::0;:::o;55182:47::-;;;;;;;;;;;;;;;;;:::o;54908:32::-;;;;:::o;56550:558::-;56626:1;56616:6;;:11;56608:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;56690:11;;56678:8;:23;;:39;;;;;56716:1;56705:8;:12;56678:39;56670:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;56806:11;;56764:38;56793:8;56764:24;56777:10;56764:12;:24::i;:::-;:28;;:38;;;;:::i;:::-;:53;;:69;;;;;56832:1;56821:8;:12;56764:69;56756:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;56903:9;56880:19;56893:5;;56880:8;:12;;:19;;;;:::i;:::-;:32;;56872:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;56999:14;;56968:27;56986:8;56968:13;:11;:13::i;:::-;:17;;:27;;;;:::i;:::-;:45;;56960:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;57069:31;57079:10;57091:8;57069:9;:31::i;:::-;56550:558;:::o;32371:308::-;32482:19;:17;:19::i;:::-;32470:31;;:8;:31;;;32466:61;;;32510:17;;;;;;;;;;;;;;32466:61;32592:8;32540:18;:39;32559:19;:17;:19::i;:::-;32540:39;;;;;;;;;;;;;;;:49;32580:8;32540:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32652:8;32616:55;;32631:19;:17;:19::i;:::-;32616:55;;;32662:8;32616:55;;;;;;:::i;:::-;;;;;;;;32371:308;;:::o;54873:26::-;;;;;;;;;;;;;:::o;54748:118::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57649:560::-;57698:14;57731:6;57740:1;57731:10;;57727:341;57749:13;:11;:13::i;:::-;57744:1;:18;57727:341;;57800:10;57786:24;;:10;57794:1;57786:7;:10::i;:::-;:24;;;57783:285;;;57835:9;57847:18;:21;57866:1;57847:21;;;;;;;;;;;;57835:33;;57831:167;57875:11;;57871:1;:15;57831:167;;;57924:74;57960:27;:36;57993:1;57989;:5;;;;:::i;:::-;57960:36;;;;;;;;;;;;57936:12;:21;57954:1;57950;:5;;;;:::i;:::-;57936:21;;;;;;;;;;;;:60;;;;:::i;:::-;57924:6;:10;;:74;;;;:::i;:::-;57915:83;;57889:3;;;;;:::i;:::-;;;;57831:167;;;;58041:11;;58017:18;:21;58036:1;58017:21;;;;;;;;;;;:35;;;;57783:285;57765:3;;;;;:::i;:::-;;;;57727:341;;;;58079:13;58106:10;58098:24;;58130:6;58098:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58078:63;;;58160:8;58152:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;57687:522;;57649:560::o;33241:399::-;33408:31;33421:4;33427:2;33431:7;33408:12;:31::i;:::-;33472:1;33454:2;:14;;;:19;33450:183;;33493:56;33524:4;33530:2;33534:7;33543:5;33493:30;:56::i;:::-;33488:145;;33577:40;;;;;;;;;;;;;;33488:145;33450:183;33241:399;;;;:::o;57268:149::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57327:9:::1;57319:5;:17;;;;57361:1;57347:11;:15;;;;57387:1;57373:11;:15;;;;57408:1;57399:6;:10;;;;57268:149::o:0;59040:312::-;59105:13;59139:16;59147:7;59139;:16::i;:::-;59131:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;59221:6;;;;;;;;;;;59218:98;;;59273:10;59285:20;59286:7;59285:18;:20::i;:::-;59256:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59242:74;;;;59218:98;59334:10;59327:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59040:312;;;;:::o;55024:30::-;;;;:::o;59457:113::-;59515:7;59542:20;59556:5;59542:13;:20::i;:::-;59535:27;;59457:113;;;:::o;32750:164::-;32847:4;32871:18;:25;32890:5;32871:25;;;;;;;;;;;;;;;:35;32897:8;32871:35;;;;;;;;;;;;;;;;;;;;;;;;;32864:42;;32750:164;;;;:::o;10297:201::-;10107:12;:10;:12::i;:::-;10096:23;;:7;:5;:7::i;:::-;:23;;;10088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10406:1:::1;10386:22;;:8;:22;;;;10378:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10462:28;10481:8;10462:18;:28::i;:::-;10297:201:::0;:::o;9505:98::-;9558:7;9585:10;9578:17;;9505:98;:::o;3455:::-;3513:7;3544:1;3540;:5;;;;:::i;:::-;3533:12;;3455:98;;;;:::o;34252:104::-;34321:27;34331:2;34335:8;34321:27;;;;;;;;;;;;:9;:27::i;:::-;34252:104;;:::o;33895:273::-;33952:4;34008:7;33989:15;:13;:15::i;:::-;:26;;:66;;;;;34042:13;;34032:7;:23;33989:66;:152;;;;;34140:1;20428:8;34093:17;:26;34111:7;34093:26;;;;;;;;;;;;:43;:48;33989:152;33969:172;;33895:273;;;:::o;52456:105::-;52516:7;52543:10;52536:17;;52456:105;:::o;59358:93::-;59415:7;59442:1;59435:8;;59358:93;:::o;26810:1174::-;26877:7;26897:12;26912:7;26897:22;;26980:4;26961:15;:13;:15::i;:::-;:23;26957:960;;27014:13;;27007:4;:20;27003:914;;;27052:14;27069:17;:23;27087:4;27069:23;;;;;;;;;;;;27052:40;;27185:1;20428:8;27158:6;:23;:28;27154:744;;;27677:158;27694:1;27684:6;:11;27677:158;;;27733:11;27742:1;27733:4;:8;;:11;;;;:::i;:::-;27728:16;;27784:17;:23;27802:4;27784:23;;;;;;;;;;;;27775:32;;27677:158;;;27868:6;27861:13;;;;;;27154:744;27029:888;27003:914;26957:960;27945:31;;;;;;;;;;;;;;26810:1174;;;;:::o;39696:652::-;39791:27;39820:23;39861:53;39917:15;39861:71;;40103:7;40097:4;40090:21;40138:22;40132:4;40125:36;40214:4;40208;40198:21;40175:44;;40310:19;40304:26;40285:45;;40041:300;39696:652;;;:::o;40461:645::-;40603:11;40765:15;40759:4;40755:26;40747:34;;40924:15;40913:9;40909:31;40896:44;;41071:15;41060:9;41057:30;41050:4;41039:9;41036:19;41033:55;41023:65;;40461:645;;;;;:::o;51289:159::-;;;;;:::o;49601:309::-;49736:7;49756:16;20829:3;49782:19;:40;;49756:67;;20829:3;49849:31;49860:4;49866:2;49870:9;49849:10;:31::i;:::-;49841:40;;:61;;49834:68;;;49601:309;;;;;:::o;29429:447::-;29509:14;29677:15;29670:5;29666:27;29657:36;;29851:5;29837:11;29813:22;29809:40;29806:51;29799:5;29796:62;29786:72;;29429:447;;;;:::o;52107:158::-;;;;;:::o;10507:191::-;10581:16;10600:6;;;;;;;;;;;10581:25;;10626:8;10617:6;;:17;;;;;;;;;;;;;;;;;;10681:8;10650:40;;10671:8;10650:40;;;;;;;;;;;;10570:128;10507:191;:::o;156:190::-;281:4;334;305:25;318:5;325:4;305:12;:25::i;:::-;:33;298:40;;156:190;;;;;:::o;4193:98::-;4251:7;4282:1;4278;:5;;;;:::i;:::-;4271:12;;4193:98;;;;:::o;48111:716::-;48274:4;48320:2;48295:45;;;48341:19;:17;:19::i;:::-;48362:4;48368:7;48377:5;48295:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48291:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48595:1;48578:6;:13;:18;48574:235;;;48624:40;;;;;;;;;;;;;;48574:235;48767:6;48761:13;48752:6;48748:2;48744:15;48737:38;48291:529;48464:54;;;48454:64;;;:6;:64;;;;48447:71;;;48111:716;;;;;;:::o;8122:533::-;8178:13;8218:1;8209:5;:10;8205:53;;;8236:10;;;;;;;;;;;;;;;;;;;;;8205:53;8268:12;8283:5;8268:20;;8299:14;8324:78;8339:1;8331:4;:9;8324:78;;8357:8;;;;;:::i;:::-;;;;8388:2;8380:10;;;;;:::i;:::-;;;8324:78;;;8412:19;8444:6;8434:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8412:39;;8462:154;8478:1;8469:5;:10;8462:154;;8506:1;8496:11;;;;;:::i;:::-;;;8573:2;8565:5;:10;;;;:::i;:::-;8552:2;:24;;;;:::i;:::-;8539:39;;8522:6;8529;8522:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8602:2;8593:11;;;;;:::i;:::-;;;8462:154;;;8640:6;8626:21;;;;;8122:533;;;;:::o;25409:176::-;25470:7;19658:13;19795:2;25498:18;:25;25517:5;25498:25;;;;;;;;;;;;;;;;:49;;25497:80;25490:87;;25409:176;;;:::o;34772:681::-;34895:19;34901:2;34905:8;34895:5;:19::i;:::-;34974:1;34956:2;:14;;;:19;34952:483;;34996:11;35010:13;;34996:27;;35042:13;35064:8;35058:3;:14;35042:30;;35091:233;35122:62;35161:1;35165:2;35169:7;;;;;;35178:5;35122:30;:62::i;:::-;35117:167;;35220:40;;;;;;;;;;;;;;35117:167;35319:3;35311:5;:11;35091:233;;35406:3;35389:13;;:20;35385:34;;35411:8;;;35385:34;34977:458;;34952:483;34772:681;;;:::o;3836:98::-;3894:7;3925:1;3921;:5;;;;:::i;:::-;3914:12;;3836:98;;;;:::o;50486:147::-;50623:6;50486:147;;;;;:::o;351:517::-;434:7;454:20;477:4;454:27;;497:9;492:339;516:5;:12;512:1;:16;492:339;;;550:20;573:5;579:1;573:8;;;;;;;;:::i;:::-;;;;;;;;550:31;;616:12;600;:28;596:224;;664:42;679:12;693;664:14;:42::i;:::-;649:57;;596:224;;;762:42;777:12;791;762:14;:42::i;:::-;747:57;;596:224;535:296;530:3;;;;;:::i;:::-;;;;492:339;;;;848:12;841:19;;;351:517;;;;:::o;35726:1529::-;35791:20;35814:13;;35791:36;;35856:1;35842:16;;:2;:16;;;35838:48;;;35867:19;;;;;;;;;;;;;;35838:48;35913:1;35901:8;:13;35897:44;;;35923:18;;;;;;;;;;;;;;35897:44;35954:61;35984:1;35988:2;35992:12;36006:8;35954:21;:61::i;:::-;36497:1;19795:2;36468:1;:25;;36467:31;36455:8;:44;36429:18;:22;36448:2;36429:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;36776:139;36813:2;36867:33;36890:1;36894:2;36898:1;36867:14;:33::i;:::-;36834:30;36855:8;36834:20;:30::i;:::-;:66;36776:18;:139::i;:::-;36742:17;:31;36760:12;36742:31;;;;;;;;;;;:173;;;;36932:15;36950:12;36932:30;;36977:11;37006:8;36991:12;:23;36977:37;;37029:101;37081:9;;;;;;37077:2;37056:35;;37073:1;37056:35;;;;;;;;;;;;37125:3;37115:7;:13;37029:101;;37162:3;37146:13;:19;;;;36203:974;;37187:60;37216:1;37220:2;37224:12;37238:8;37187:20;:60::i;:::-;35780:1475;35726:1529;;:::o;876:224::-;944:13;1007:1;1001:4;994:15;1036:1;1030:4;1023:15;1077:4;1071;1061:21;1052:30;;876:224;;;;:::o;31259:322::-;31329:14;31560:1;31550:8;31547:15;31522:23;31518:45;31508:55;;31259:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:329::-;6415:6;6464:2;6452:9;6443:7;6439:23;6435:32;6432:119;;;6470:79;;:::i;:::-;6432:119;6590:1;6615:53;6660:7;6651:6;6640:9;6636:22;6615:53;:::i;:::-;6605:63;;6561:117;6356:329;;;;:::o;6691:327::-;6749:6;6798:2;6786:9;6777:7;6773:23;6769:32;6766:119;;;6804:79;;:::i;:::-;6766:119;6924:1;6949:52;6993:7;6984:6;6973:9;6969:22;6949:52;:::i;:::-;6939:62;;6895:116;6691:327;;;;:::o;7024:349::-;7093:6;7142:2;7130:9;7121:7;7117:23;7113:32;7110:119;;;7148:79;;:::i;:::-;7110:119;7268:1;7293:63;7348:7;7339:6;7328:9;7324:22;7293:63;:::i;:::-;7283:73;;7239:127;7024:349;;;;:::o;7379:509::-;7448:6;7497:2;7485:9;7476:7;7472:23;7468:32;7465:119;;;7503:79;;:::i;:::-;7465:119;7651:1;7640:9;7636:17;7623:31;7681:18;7673:6;7670:30;7667:117;;;7703:79;;:::i;:::-;7667:117;7808:63;7863:7;7854:6;7843:9;7839:22;7808:63;:::i;:::-;7798:73;;7594:287;7379:509;;;;:::o;7894:329::-;7953:6;8002:2;7990:9;7981:7;7977:23;7973:32;7970:119;;;8008:79;;:::i;:::-;7970:119;8128:1;8153:53;8198:7;8189:6;8178:9;8174:22;8153:53;:::i;:::-;8143:63;;8099:117;7894:329;;;;:::o;8229:704::-;8324:6;8332;8340;8389:2;8377:9;8368:7;8364:23;8360:32;8357:119;;;8395:79;;:::i;:::-;8357:119;8515:1;8540:53;8585:7;8576:6;8565:9;8561:22;8540:53;:::i;:::-;8530:63;;8486:117;8670:2;8659:9;8655:18;8642:32;8701:18;8693:6;8690:30;8687:117;;;8723:79;;:::i;:::-;8687:117;8836:80;8908:7;8899:6;8888:9;8884:22;8836:80;:::i;:::-;8818:98;;;;8613:313;8229:704;;;;;:::o;8939:118::-;9026:24;9044:5;9026:24;:::i;:::-;9021:3;9014:37;8939:118;;:::o;9063:157::-;9168:45;9188:24;9206:5;9188:24;:::i;:::-;9168:45;:::i;:::-;9163:3;9156:58;9063:157;;:::o;9226:109::-;9307:21;9322:5;9307:21;:::i;:::-;9302:3;9295:34;9226:109;;:::o;9341:118::-;9428:24;9446:5;9428:24;:::i;:::-;9423:3;9416:37;9341:118;;:::o;9465:360::-;9551:3;9579:38;9611:5;9579:38;:::i;:::-;9633:70;9696:6;9691:3;9633:70;:::i;:::-;9626:77;;9712:52;9757:6;9752:3;9745:4;9738:5;9734:16;9712:52;:::i;:::-;9789:29;9811:6;9789:29;:::i;:::-;9784:3;9780:39;9773:46;;9555:270;9465:360;;;;:::o;9831:364::-;9919:3;9947:39;9980:5;9947:39;:::i;:::-;10002:71;10066:6;10061:3;10002:71;:::i;:::-;9995:78;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9923:272;9831:364;;;;:::o;10201:377::-;10307:3;10335:39;10368:5;10335:39;:::i;:::-;10390:89;10472:6;10467:3;10390:89;:::i;:::-;10383:96;;10488:52;10533:6;10528:3;10521:4;10514:5;10510:16;10488:52;:::i;:::-;10565:6;10560:3;10556:16;10549:23;;10311:267;10201:377;;;;:::o;10608:845::-;10711:3;10748:5;10742:12;10777:36;10803:9;10777:36;:::i;:::-;10829:89;10911:6;10906:3;10829:89;:::i;:::-;10822:96;;10949:1;10938:9;10934:17;10965:1;10960:137;;;;11111:1;11106:341;;;;10927:520;;10960:137;11044:4;11040:9;11029;11025:25;11020:3;11013:38;11080:6;11075:3;11071:16;11064:23;;10960:137;;11106:341;11173:38;11205:5;11173:38;:::i;:::-;11233:1;11247:154;11261:6;11258:1;11255:13;11247:154;;;11335:7;11329:14;11325:1;11320:3;11316:11;11309:35;11385:1;11376:7;11372:15;11361:26;;11283:4;11280:1;11276:12;11271:17;;11247:154;;;11430:6;11425:3;11421:16;11414:23;;11113:334;;10927:520;;10715:738;;10608:845;;;;:::o;11459:366::-;11601:3;11622:67;11686:2;11681:3;11622:67;:::i;:::-;11615:74;;11698:93;11787:3;11698:93;:::i;:::-;11816:2;11811:3;11807:12;11800:19;;11459:366;;;:::o;11831:::-;11973:3;11994:67;12058:2;12053:3;11994:67;:::i;:::-;11987:74;;12070:93;12159:3;12070:93;:::i;:::-;12188:2;12183:3;12179:12;12172:19;;11831:366;;;:::o;12203:::-;12345:3;12366:67;12430:2;12425:3;12366:67;:::i;:::-;12359:74;;12442:93;12531:3;12442:93;:::i;:::-;12560:2;12555:3;12551:12;12544:19;;12203:366;;;:::o;12575:::-;12717:3;12738:67;12802:2;12797:3;12738:67;:::i;:::-;12731:74;;12814:93;12903:3;12814:93;:::i;:::-;12932:2;12927:3;12923:12;12916:19;;12575:366;;;:::o;12947:::-;13089:3;13110:67;13174:2;13169:3;13110:67;:::i;:::-;13103:74;;13186:93;13275:3;13186:93;:::i;:::-;13304:2;13299:3;13295:12;13288:19;;12947:366;;;:::o;13319:::-;13461:3;13482:67;13546:2;13541:3;13482:67;:::i;:::-;13475:74;;13558:93;13647:3;13558:93;:::i;:::-;13676:2;13671:3;13667:12;13660:19;;13319:366;;;:::o;13691:::-;13833:3;13854:67;13918:2;13913:3;13854:67;:::i;:::-;13847:74;;13930:93;14019:3;13930:93;:::i;:::-;14048:2;14043:3;14039:12;14032:19;;13691:366;;;:::o;14063:::-;14205:3;14226:67;14290:2;14285:3;14226:67;:::i;:::-;14219:74;;14302:93;14391:3;14302:93;:::i;:::-;14420:2;14415:3;14411:12;14404:19;;14063:366;;;:::o;14435:::-;14577:3;14598:67;14662:2;14657:3;14598:67;:::i;:::-;14591:74;;14674:93;14763:3;14674:93;:::i;:::-;14792:2;14787:3;14783:12;14776:19;;14435:366;;;:::o;14807:400::-;14967:3;14988:84;15070:1;15065:3;14988:84;:::i;:::-;14981:91;;15081:93;15170:3;15081:93;:::i;:::-;15199:1;15194:3;15190:11;15183:18;;14807:400;;;:::o;15213:366::-;15355:3;15376:67;15440:2;15435:3;15376:67;:::i;:::-;15369:74;;15452:93;15541:3;15452:93;:::i;:::-;15570:2;15565:3;15561:12;15554:19;;15213:366;;;:::o;15585:::-;15727:3;15748:67;15812:2;15807:3;15748:67;:::i;:::-;15741:74;;15824:93;15913:3;15824:93;:::i;:::-;15942:2;15937:3;15933:12;15926:19;;15585:366;;;:::o;15957:::-;16099:3;16120:67;16184:2;16179:3;16120:67;:::i;:::-;16113:74;;16196:93;16285:3;16196:93;:::i;:::-;16314:2;16309:3;16305:12;16298:19;;15957:366;;;:::o;16329:398::-;16488:3;16509:83;16590:1;16585:3;16509:83;:::i;:::-;16502:90;;16601:93;16690:3;16601:93;:::i;:::-;16719:1;16714:3;16710:11;16703:18;;16329:398;;;:::o;16733:118::-;16820:24;16838:5;16820:24;:::i;:::-;16815:3;16808:37;16733:118;;:::o;16857:256::-;16969:3;16984:75;17055:3;17046:6;16984:75;:::i;:::-;17084:2;17079:3;17075:12;17068:19;;17104:3;17097:10;;16857:256;;;;:::o;17119:695::-;17397:3;17419:92;17507:3;17498:6;17419:92;:::i;:::-;17412:99;;17528:95;17619:3;17610:6;17528:95;:::i;:::-;17521:102;;17640:148;17784:3;17640:148;:::i;:::-;17633:155;;17805:3;17798:10;;17119:695;;;;;:::o;17820:379::-;18004:3;18026:147;18169:3;18026:147;:::i;:::-;18019:154;;18190:3;18183:10;;17820:379;;;:::o;18205:222::-;18298:4;18336:2;18325:9;18321:18;18313:26;;18349:71;18417:1;18406:9;18402:17;18393:6;18349:71;:::i;:::-;18205:222;;;;:::o;18433:640::-;18628:4;18666:3;18655:9;18651:19;18643:27;;18680:71;18748:1;18737:9;18733:17;18724:6;18680:71;:::i;:::-;18761:72;18829:2;18818:9;18814:18;18805:6;18761:72;:::i;:::-;18843;18911:2;18900:9;18896:18;18887:6;18843:72;:::i;:::-;18962:9;18956:4;18952:20;18947:2;18936:9;18932:18;18925:48;18990:76;19061:4;19052:6;18990:76;:::i;:::-;18982:84;;18433:640;;;;;;;:::o;19079:210::-;19166:4;19204:2;19193:9;19189:18;19181:26;;19217:65;19279:1;19268:9;19264:17;19255:6;19217:65;:::i;:::-;19079:210;;;;:::o;19295:222::-;19388:4;19426:2;19415:9;19411:18;19403:26;;19439:71;19507:1;19496:9;19492:17;19483:6;19439:71;:::i;:::-;19295:222;;;;:::o;19523:313::-;19636:4;19674:2;19663:9;19659:18;19651:26;;19723:9;19717:4;19713:20;19709:1;19698:9;19694:17;19687:47;19751:78;19824:4;19815:6;19751:78;:::i;:::-;19743:86;;19523:313;;;;:::o;19842:419::-;20008:4;20046:2;20035:9;20031:18;20023:26;;20095:9;20089:4;20085:20;20081:1;20070:9;20066:17;20059:47;20123:131;20249:4;20123:131;:::i;:::-;20115:139;;19842:419;;;:::o;20267:::-;20433:4;20471:2;20460:9;20456:18;20448:26;;20520:9;20514:4;20510:20;20506:1;20495:9;20491:17;20484:47;20548:131;20674:4;20548:131;:::i;:::-;20540:139;;20267:419;;;:::o;20692:::-;20858:4;20896:2;20885:9;20881:18;20873:26;;20945:9;20939:4;20935:20;20931:1;20920:9;20916:17;20909:47;20973:131;21099:4;20973:131;:::i;:::-;20965:139;;20692:419;;;:::o;21117:::-;21283:4;21321:2;21310:9;21306:18;21298:26;;21370:9;21364:4;21360:20;21356:1;21345:9;21341:17;21334:47;21398:131;21524:4;21398:131;:::i;:::-;21390:139;;21117:419;;;:::o;21542:::-;21708:4;21746:2;21735:9;21731:18;21723:26;;21795:9;21789:4;21785:20;21781:1;21770:9;21766:17;21759:47;21823:131;21949:4;21823:131;:::i;:::-;21815:139;;21542:419;;;:::o;21967:::-;22133:4;22171:2;22160:9;22156:18;22148:26;;22220:9;22214:4;22210:20;22206:1;22195:9;22191:17;22184:47;22248:131;22374:4;22248:131;:::i;:::-;22240:139;;21967:419;;;:::o;22392:::-;22558:4;22596:2;22585:9;22581:18;22573:26;;22645:9;22639:4;22635:20;22631:1;22620:9;22616:17;22609:47;22673:131;22799:4;22673:131;:::i;:::-;22665:139;;22392:419;;;:::o;22817:::-;22983:4;23021:2;23010:9;23006:18;22998:26;;23070:9;23064:4;23060:20;23056:1;23045:9;23041:17;23034:47;23098:131;23224:4;23098:131;:::i;:::-;23090:139;;22817:419;;;:::o;23242:::-;23408:4;23446:2;23435:9;23431:18;23423:26;;23495:9;23489:4;23485:20;23481:1;23470:9;23466:17;23459:47;23523:131;23649:4;23523:131;:::i;:::-;23515:139;;23242:419;;;:::o;23667:::-;23833:4;23871:2;23860:9;23856:18;23848:26;;23920:9;23914:4;23910:20;23906:1;23895:9;23891:17;23884:47;23948:131;24074:4;23948:131;:::i;:::-;23940:139;;23667:419;;;:::o;24092:::-;24258:4;24296:2;24285:9;24281:18;24273:26;;24345:9;24339:4;24335:20;24331:1;24320:9;24316:17;24309:47;24373:131;24499:4;24373:131;:::i;:::-;24365:139;;24092:419;;;:::o;24517:::-;24683:4;24721:2;24710:9;24706:18;24698:26;;24770:9;24764:4;24760:20;24756:1;24745:9;24741:17;24734:47;24798:131;24924:4;24798:131;:::i;:::-;24790:139;;24517:419;;;:::o;24942:222::-;25035:4;25073:2;25062:9;25058:18;25050:26;;25086:71;25154:1;25143:9;25139:17;25130:6;25086:71;:::i;:::-;24942:222;;;;:::o;25170:129::-;25204:6;25231:20;;:::i;:::-;25221:30;;25260:33;25288:4;25280:6;25260:33;:::i;:::-;25170:129;;;:::o;25305:75::-;25338:6;25371:2;25365:9;25355:19;;25305:75;:::o;25386:307::-;25447:4;25537:18;25529:6;25526:30;25523:56;;;25559:18;;:::i;:::-;25523:56;25597:29;25619:6;25597:29;:::i;:::-;25589:37;;25681:4;25675;25671:15;25663:23;;25386:307;;;:::o;25699:308::-;25761:4;25851:18;25843:6;25840:30;25837:56;;;25873:18;;:::i;:::-;25837:56;25911:29;25933:6;25911:29;:::i;:::-;25903:37;;25995:4;25989;25985:15;25977:23;;25699:308;;;:::o;26013:141::-;26062:4;26085:3;26077:11;;26108:3;26105:1;26098:14;26142:4;26139:1;26129:18;26121:26;;26013:141;;;:::o;26160:98::-;26211:6;26245:5;26239:12;26229:22;;26160:98;;;:::o;26264:99::-;26316:6;26350:5;26344:12;26334:22;;26264:99;;;:::o;26369:168::-;26452:11;26486:6;26481:3;26474:19;26526:4;26521:3;26517:14;26502:29;;26369:168;;;;:::o;26543:147::-;26644:11;26681:3;26666:18;;26543:147;;;;:::o;26696:169::-;26780:11;26814:6;26809:3;26802:19;26854:4;26849:3;26845:14;26830:29;;26696:169;;;;:::o;26871:148::-;26973:11;27010:3;26995:18;;26871:148;;;;:::o;27025:305::-;27065:3;27084:20;27102:1;27084:20;:::i;:::-;27079:25;;27118:20;27136:1;27118:20;:::i;:::-;27113:25;;27272:1;27204:66;27200:74;27197:1;27194:81;27191:107;;;27278:18;;:::i;:::-;27191:107;27322:1;27319;27315:9;27308:16;;27025:305;;;;:::o;27336:185::-;27376:1;27393:20;27411:1;27393:20;:::i;:::-;27388:25;;27427:20;27445:1;27427:20;:::i;:::-;27422:25;;27466:1;27456:35;;27471:18;;:::i;:::-;27456:35;27513:1;27510;27506:9;27501:14;;27336:185;;;;:::o;27527:348::-;27567:7;27590:20;27608:1;27590:20;:::i;:::-;27585:25;;27624:20;27642:1;27624:20;:::i;:::-;27619:25;;27812:1;27744:66;27740:74;27737:1;27734:81;27729:1;27722:9;27715:17;27711:105;27708:131;;;27819:18;;:::i;:::-;27708:131;27867:1;27864;27860:9;27849:20;;27527:348;;;;:::o;27881:191::-;27921:4;27941:20;27959:1;27941:20;:::i;:::-;27936:25;;27975:20;27993:1;27975:20;:::i;:::-;27970:25;;28014:1;28011;28008:8;28005:34;;;28019:18;;:::i;:::-;28005:34;28064:1;28061;28057:9;28049:17;;27881:191;;;;:::o;28078:96::-;28115:7;28144:24;28162:5;28144:24;:::i;:::-;28133:35;;28078:96;;;:::o;28180:90::-;28214:7;28257:5;28250:13;28243:21;28232:32;;28180:90;;;:::o;28276:77::-;28313:7;28342:5;28331:16;;28276:77;;;:::o;28359:149::-;28395:7;28435:66;28428:5;28424:78;28413:89;;28359:149;;;:::o;28514:126::-;28551:7;28591:42;28584:5;28580:54;28569:65;;28514:126;;;:::o;28646:77::-;28683:7;28712:5;28701:16;;28646:77;;;:::o;28729:154::-;28813:6;28808:3;28803;28790:30;28875:1;28866:6;28861:3;28857:16;28850:27;28729:154;;;:::o;28889:307::-;28957:1;28967:113;28981:6;28978:1;28975:13;28967:113;;;29066:1;29061:3;29057:11;29051:18;29047:1;29042:3;29038:11;29031:39;29003:2;29000:1;28996:10;28991:15;;28967:113;;;29098:6;29095:1;29092:13;29089:101;;;29178:1;29169:6;29164:3;29160:16;29153:27;29089:101;28938:258;28889:307;;;:::o;29202:320::-;29246:6;29283:1;29277:4;29273:12;29263:22;;29330:1;29324:4;29320:12;29351:18;29341:81;;29407:4;29399:6;29395:17;29385:27;;29341:81;29469:2;29461:6;29458:14;29438:18;29435:38;29432:84;;;29488:18;;:::i;:::-;29432:84;29253:269;29202:320;;;:::o;29528:281::-;29611:27;29633:4;29611:27;:::i;:::-;29603:6;29599:40;29741:6;29729:10;29726:22;29705:18;29693:10;29690:34;29687:62;29684:88;;;29752:18;;:::i;:::-;29684:88;29792:10;29788:2;29781:22;29571:238;29528:281;;:::o;29815:233::-;29854:3;29877:24;29895:5;29877:24;:::i;:::-;29868:33;;29923:66;29916:5;29913:77;29910:103;;;29993:18;;:::i;:::-;29910:103;30040:1;30033:5;30029:13;30022:20;;29815:233;;;:::o;30054:100::-;30093:7;30122:26;30142:5;30122:26;:::i;:::-;30111:37;;30054:100;;;:::o;30160:94::-;30199:7;30228:20;30242:5;30228:20;:::i;:::-;30217:31;;30160:94;;;:::o;30260:176::-;30292:1;30309:20;30327:1;30309:20;:::i;:::-;30304:25;;30343:20;30361:1;30343:20;:::i;:::-;30338:25;;30382:1;30372:35;;30387:18;;:::i;:::-;30372:35;30428:1;30425;30421:9;30416:14;;30260:176;;;;:::o;30442:180::-;30490:77;30487:1;30480:88;30587:4;30584:1;30577:15;30611:4;30608:1;30601:15;30628:180;30676:77;30673:1;30666:88;30773:4;30770:1;30763:15;30797:4;30794:1;30787:15;30814:180;30862:77;30859:1;30852:88;30959:4;30956:1;30949:15;30983:4;30980:1;30973:15;31000:180;31048:77;31045:1;31038:88;31145:4;31142:1;31135:15;31169:4;31166:1;31159:15;31186:180;31234:77;31231:1;31224:88;31331:4;31328:1;31321:15;31355:4;31352:1;31345:15;31372:117;31481:1;31478;31471:12;31495:117;31604:1;31601;31594:12;31618:117;31727:1;31724;31717:12;31741:117;31850:1;31847;31840:12;31864:117;31973:1;31970;31963:12;31987:117;32096:1;32093;32086:12;32110:102;32151:6;32202:2;32198:7;32193:2;32186:5;32182:14;32178:28;32168:38;;32110:102;;;:::o;32218:94::-;32251:8;32299:5;32295:2;32291:14;32270:35;;32218:94;;;:::o;32318:225::-;32458:34;32454:1;32446:6;32442:14;32435:58;32527:8;32522:2;32514:6;32510:15;32503:33;32318:225;:::o;32549:220::-;32689:34;32685:1;32677:6;32673:14;32666:58;32758:3;32753:2;32745:6;32741:15;32734:28;32549:220;:::o;32775:173::-;32915:25;32911:1;32903:6;32899:14;32892:49;32775:173;:::o;32954:182::-;33094:34;33090:1;33082:6;33078:14;33071:58;32954:182;:::o;33142:180::-;33282:32;33278:1;33270:6;33266:14;33259:56;33142:180;:::o;33328:::-;33468:32;33464:1;33456:6;33452:14;33445:56;33328:180;:::o;33514:165::-;33654:17;33650:1;33642:6;33638:14;33631:41;33514:165;:::o;33685:176::-;33825:28;33821:1;33813:6;33809:14;33802:52;33685:176;:::o;33867:178::-;34007:30;34003:1;33995:6;33991:14;33984:54;33867:178;:::o;34051:155::-;34191:7;34187:1;34179:6;34175:14;34168:31;34051:155;:::o;34212:182::-;34352:34;34348:1;34340:6;34336:14;34329:58;34212:182;:::o;34400:234::-;34540:34;34536:1;34528:6;34524:14;34517:58;34609:17;34604:2;34596:6;34592:15;34585:42;34400:234;:::o;34640:177::-;34780:29;34776:1;34768:6;34764:14;34757:53;34640:177;:::o;34823:114::-;;:::o;34943:122::-;35016:24;35034:5;35016:24;:::i;:::-;35009:5;35006:35;34996:63;;35055:1;35052;35045:12;34996:63;34943:122;:::o;35071:116::-;35141:21;35156:5;35141:21;:::i;:::-;35134:5;35131:32;35121:60;;35177:1;35174;35167:12;35121:60;35071:116;:::o;35193:122::-;35266:24;35284:5;35266:24;:::i;:::-;35259:5;35256:35;35246:63;;35305:1;35302;35295:12;35246:63;35193:122;:::o;35321:120::-;35393:23;35410:5;35393:23;:::i;:::-;35386:5;35383:34;35373:62;;35431:1;35428;35421:12;35373:62;35321:120;:::o;35447:122::-;35520:24;35538:5;35520:24;:::i;:::-;35513:5;35510:35;35500:63;;35559:1;35556;35549:12;35500:63;35447:122;:::o

Swarm Source

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