ETH Price: $2,678.61 (+1.57%)

Token

CoinFLEX Vote Token (CFV)
 

Overview

Max Total Supply

136,702,048.89 CFV

Holders

205

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
91,335.46 CFV

Value
$0.00
0x5acfb593ff2d8c8f136027da773bb77acfea04b6
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x770A6fCE...fc9095bd5
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
VoteToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 14 : VoteToken.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";

contract VoteToken is ERC20, Pausable, AccessControl {
    bytes32 public constant FULLTIME_TRANSFER_ROLE =
        keccak256("FULLTIME_TRANSFER_ROLE");
    bytes32 public constant PAUSE_UNPAUSE_ROLE =
        keccak256("PAUSE_UNPAUSE_ROLE");
    bytes32 public constant MINT_BURN_ROLE =
        keccak256("MINT_BURN_ROLE");
    bytes32 public constant BLACKLIST_ADD_REMOVE_ROLE =
        keccak256("BLACKLIST_ADD_REMOVE_ROLE");
    bytes32 public constant DEPOSITOR_ADDRESSES_ADD_REMOVE_ROLE =
        keccak256("DEPOSITOR_ADDRESSES_ADD_REMOVE_ROLE");

    mapping(address => address) public depositorAddresses;
    mapping(address => bool) public blacklist;

    event AddedToBlacklist(address indexed account);
    event RemovedFromBlacklist(address indexed account);
    event AddedToDepositorAddresses(
        address indexed receiverAddress,
        address indexed depositorAddress
    );
    event RemovedFromDepositorAddresses(
        address indexed receiverAddress,
        address indexed depositorAddress
    );

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant DEFAULT_ADMIN_ROLE by calling grantRole(),
     * and also can renounce it's own DEFAULT_ADMIN_ROLE by calling renounceRole().
     *
     * Initially _paused is set to true to pause asset transfers except for FULLTIME_TRANSFER_ROLE and depositorAddresses.
     */
    constructor(string memory tokenName, string memory tokenSymbol)
        ERC20(tokenName, tokenSymbol)
    {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _pause();
    }

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant BLACKLIST_ADD_REMOVE_ROLE by calling grantRole().
     * Only BLACKLIST_ADD_REMOVE_ROLE can addToBlacklist.
     */
    function addToBlacklist(address account)
        external
        onlyRole(BLACKLIST_ADD_REMOVE_ROLE)
    {
        blacklist[account] = true;
        emit AddedToBlacklist(account);
    }

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant BLACKLIST_ADD_REMOVE_ROLE by calling grantRole().
     * Only BLACKLIST_ADD_REMOVE_ROLE can removeFromBlacklist.
     */
    function removeFromBlacklist(address account)
        external
        onlyRole(BLACKLIST_ADD_REMOVE_ROLE)
    {
        blacklist[account] = false;
        emit RemovedFromBlacklist(account);
    }

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant DEPOSITOR_ADDRESSES_ADD_REMOVE_ROLE by calling grantRole().
     * Only DEPOSITOR_ADDRESSES_ADD_REMOVE_ROLE can addToDepositorAddresses.
     */
    function addToDepositorAddresses(
        address receiverAddress,
        address depositorAddress
    ) external onlyRole(DEPOSITOR_ADDRESSES_ADD_REMOVE_ROLE) {
        depositorAddresses[receiverAddress] = depositorAddress;
        emit AddedToDepositorAddresses(receiverAddress, depositorAddress);
    }

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant DEPOSITOR_ADDRESSES_ADD_REMOVE_ROLE by calling grantRole().
     * Only DEPOSITOR_ADDRESSES_ADD_REMOVE_ROLE can removeFromDepositorAddresses.
     */
    function removeFromDepositorAddresses(address receiverAddress)
        external
        onlyRole(DEPOSITOR_ADDRESSES_ADD_REMOVE_ROLE)
    {
        depositorAddresses[receiverAddress] = address(0);
        emit RemovedFromDepositorAddresses(receiverAddress, address(0));
    }

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant MINT_BURN_ROLE by calling grantRole().
     * Only MINT_BURN_ROLE can mint.
     */
    function mint(address to, uint256 amount) external onlyRole(MINT_BURN_ROLE) {
        _mint(to, amount);
    }

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant MINT_BURN_ROLE by calling grantRole().
     * Only MINT_BURN_ROLE can burn.
     */
    function burn(address account, uint256 amount)
        external
        onlyRole(MINT_BURN_ROLE)
    {
        _burn(account, amount);
    }

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant PAUSE_UNPAUSE_ROLE by calling grantRole().
     * Only PAUSE_UNPAUSE_ROLE can unpause.
     */
    function unpause() external onlyRole(PAUSE_UNPAUSE_ROLE) {
        _unpause();
    }

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant PAUSE_UNPAUSE_ROLE by calling grantRole().
     * Only PAUSE_UNPAUSE_ROLE can pause.
     */
    function pause() external onlyRole(PAUSE_UNPAUSE_ROLE) {
        _pause();
    }

    /**
     * @dev blacklisted account cannot use his voting power to vote.
     */
    function balanceOf(address account) public view override returns (uint256) {
        if (blacklist[account]) {
            return 0;
        } else {
            return super.balanceOf(account);
        }
    }

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant FULLTIME_TRANSFER_ROLE by calling grantRole().
     * FULLTIME_TRANSFER_ROLE and depositorAddresses is not subject to the _paused status.
     */
    function transfer(address recipient, uint256 amount)
        public
        override
        whenNotPausedWithException(msg.sender, recipient)
        notBlacklisted(msg.sender)
        notBlacklisted(recipient)
        returns (bool)
    {
        return super.transfer(recipient, amount);
    }

    function approve(address spender, uint256 amount)
        public
        override
        whenNotPaused
        notBlacklisted(msg.sender)
        notBlacklisted(spender)
        returns (bool)
    {
        return super.approve(spender, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    )
        public
        override
        whenNotPaused
        notBlacklisted(msg.sender)
        notBlacklisted(sender)
        notBlacklisted(recipient)
        returns (bool)
    {
        return super.transferFrom(sender, recipient, amount);
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        override
        whenNotPaused
        notBlacklisted(msg.sender)
        notBlacklisted(spender)
        returns (bool)
    {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        override
        whenNotPaused
        notBlacklisted(msg.sender)
        notBlacklisted(spender)
        returns (bool)
    {
        return super.decreaseAllowance(spender, subtractedValue);
    }

    modifier whenNotPausedWithException(address caller, address recipient) {
        if (hasRole(FULLTIME_TRANSFER_ROLE, caller)) {
            _;
        } else if (depositorAddresses[caller] == recipient) {
            _;
        } else {
            _requireNotPaused();
            _;
        }
    }

    modifier notBlacklisted(address account) {
        require(!blacklist[account], "Account is blacklisted");
        _;
    }
}

File 2 of 14 : VoteTokenArchive1.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract VoteTokenArchive1 is ERC20, Pausable, Ownable {
    /**
     * @dev Initially _paused is set to true to pause asset transfers.
     *
     * Set contract creator as owner of contract.
     */
    constructor(string memory tokenName, string memory tokenSymbol) ERC20(tokenName, tokenSymbol) {
        _pause();
    }

    /**
     * @dev Only owner can mint.
     */
    function mint(address to, uint256 amount) external onlyOwner {
        _mint(to, amount);
    }

    /**
     * @dev Only owner can burn.
     */
    function burn(address account, uint256 amount) external onlyOwner {
        _burn(account, amount);
    }

    /**
     * @dev Only owner can unpause, i.e. set _paused to false.
     */
    function unpause() external onlyOwner {
        _unpause();
    }

    /**
     * @dev Only owner can pause, i.e. set _paused to true.
     */
    function pause() external onlyOwner {
        _pause();
    }

    /**
     * @dev Transfer related functions are functional only when not paused.
     */
    function transfer(address recipient, uint256 amount)
        public
        override
        whenNotPaused
        returns (bool)
    {
        return super.transfer(recipient, amount);
    }

    function approve(address spender, uint256 amount)
        public
        override
        whenNotPaused
        returns (bool)
    {
        return super.approve(spender, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override whenNotPaused returns (bool) {
        return super.transferFrom(sender, recipient, amount);
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        override
        whenNotPaused
        returns (bool)
    {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        override
        whenNotPaused
        returns (bool)
    {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}

File 3 of 14 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 4 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 6 of 14 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 7 of 14 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 8 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 9 of 14 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

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

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

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

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

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

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

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

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

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

        _revokeRole(role, account);
    }

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

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

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 10 of 14 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 11 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 12 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 14 of 14 : VoteTokenArchive2.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.4;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";

contract VoteTokenArchive2 is ERC20, Pausable, AccessControl {
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant BURNER_ROLE = keccak256("BURNER_ROLE");
    bytes32 public constant FULLTIMETRANSFER_ROLE =
        keccak256("FULLTIMETRANSFER_ROLE");

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant DEFAULT_ADMIN_ROLE by calling grantRole(),
     * and also can renounce it's own DEFAULT_ADMIN_ROLE by calling renounceRole().
     *
     * Initially _paused is set to true to pause asset transfers except for FULLTIMETRANSFER_ROLE.
     */
    constructor(string memory tokenName, string memory tokenSymbol) ERC20(tokenName, tokenSymbol) {
        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _pause();
    }

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant MINTER_ROLE by calling grantRole().
     * Only MINTER_ROLE can mint.
     */
    function mint(address to, uint256 amount) external onlyRole(MINTER_ROLE) {
        _mint(to, amount);
    }
    
    /**
     * @dev DEFAULT_ADMIN_ROLE can grant BURNER_ROLE by calling grantRole().
     * Only BURNER_ROLE can burn.
     */
    function burn(address account, uint256 amount)
        external
        onlyRole(BURNER_ROLE)
    {
        _burn(account, amount);
    }

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant PAUSER_ROLE by calling grantRole().
     * Only PAUSER_ROLE can unpause.
     */
    function unpause() external onlyRole(PAUSER_ROLE) {
        _unpause();
    }

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant PAUSER_ROLE by calling grantRole().
     * Only PAUSER_ROLE can pause.
     */
    function pause() external onlyRole(PAUSER_ROLE) {
        _pause();
    }

    /**
     * @dev DEFAULT_ADMIN_ROLE can grant FULLTIMETRANSFER_ROLE by calling grantRole().
     * FULLTIMETRANSFER_ROLE is not subject to the _paused status.
     */
    function transfer(address recipient, uint256 amount)
        public
        override
        whenNotPausedWithException(msg.sender)
        returns (bool)
    {
        return super.transfer(recipient, amount);
    }

    function approve(address spender, uint256 amount)
        public
        override
        whenNotPausedWithException(msg.sender)
        returns (bool)
    {
        return super.approve(spender, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override whenNotPausedWithException(msg.sender) returns (bool) {
        return super.transferFrom(sender, recipient, amount);
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        override
        whenNotPausedWithException(msg.sender)
        returns (bool)
    {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        override
        whenNotPausedWithException(msg.sender)
        returns (bool)
    {
        return super.decreaseAllowance(spender, subtractedValue);
    }

    modifier whenNotPausedWithException(address caller) {
        if (hasRole(FULLTIMETRANSFER_ROLE, caller)) {
            _;
        } else {
            _requireNotPaused();
            _;
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiverAddress","type":"address"},{"indexed":true,"internalType":"address","name":"depositorAddress","type":"address"}],"name":"AddedToDepositorAddresses","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"RemovedFromBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiverAddress","type":"address"},{"indexed":true,"internalType":"address","name":"depositorAddress","type":"address"}],"name":"RemovedFromDepositorAddresses","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BLACKLIST_ADD_REMOVE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEPOSITOR_ADDRESSES_ADD_REMOVE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FULLTIME_TRANSFER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_BURN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSE_UNPAUSE_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiverAddress","type":"address"},{"internalType":"address","name":"depositorAddress","type":"address"}],"name":"addToDepositorAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"depositorAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiverAddress","type":"address"}],"name":"removeFromDepositorAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001fff38038062001fff833981016040819052620000349162000337565b8151829082906200004d906003906020850190620001de565b50805162000063906004906020840190620001de565b50506005805460ff19169055506200007d6000336200008f565b6200008762000134565b5050620003f1565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16620001305760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620000ef3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6200013e62000191565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620001743390565b6040516001600160a01b03909116815260200160405180910390a1565b60055460ff1615620001dc5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b565b828054620001ec906200039e565b90600052602060002090601f0160209004810192826200021057600085556200025b565b82601f106200022b57805160ff19168380011785556200025b565b828001600101855582156200025b579182015b828111156200025b5782518255916020019190600101906200023e565b50620002699291506200026d565b5090565b5b808211156200026957600081556001016200026e565b600082601f83011262000295578081fd5b81516001600160401b0380821115620002b257620002b2620003db565b604051601f8301601f19908116603f01168101908282118183101715620002dd57620002dd620003db565b81604052838152602092508683858801011115620002f9578485fd5b8491505b838210156200031c5785820183015181830184015290820190620002fd565b838211156200032d57848385830101525b9695505050505050565b600080604083850312156200034a578182fd5b82516001600160401b038082111562000361578384fd5b6200036f8683870162000284565b9350602085015191508082111562000385578283fd5b50620003948582860162000284565b9150509250929050565b600181811c90821680620003b357607f821691505b60208210811415620003d557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611bfe80620004016000396000f3fe608060405234801561001057600080fd5b50600436106102055760003560e01c8063537df3b61161011a578063a217fddf116100ad578063d03563ca1161007c578063d03563ca14610475578063d547741f1461049c578063dd62ed3e146104af578063f9f92be4146104c2578063fba09123146104e557600080fd5b8063a217fddf14610434578063a457c2d71461043c578063a9059cbb1461044f578063b5eedef11461046257600080fd5b80638456cb59116100e95780638456cb59146103fe57806391d148541461040657806395d89b41146104195780639dc29fac1461042157600080fd5b8063537df3b6146103a65780635740d23b146103b95780635c975abb146103e057806370a08231146103eb57600080fd5b8063248a9ca31161019d578063395093511161016c578063395093511461033e57806339fe8306146103515780633f4ba83a1461037857806340c10f191461038057806344337ea11461039357600080fd5b8063248a9ca3146102e65780632f2ff15d14610309578063313ce5671461031c57806336568abe1461032b57600080fd5b80630eba3aa7116101d95780630eba3aa71461028f578063129b9ec8146102a457806318160ddd146102cb57806323b872dd146102d357600080fd5b80624638b11461020a57806301ffc9a71461024457806306fdde0314610267578063095ea7b31461027c575b600080fd5b6102317f609e827abab88240ddb8dd7bb4cee4cf8d83acdfe218cc707ce724f882827fb681565b6040519081526020015b60405180910390f35b6102576102523660046119e6565b610526565b604051901515815260200161023b565b61026f61055d565b60405161023b9190611a83565b61025761028a366004611983565b6105ef565b6102a261029d366004611916565b610682565b005b6102317f25846b3c20f06329bcdf5854b89a74566c7439a968a61587fad19167b9d0eacf81565b600254610231565b6102576102e1366004611948565b610704565b6102316102f43660046119ac565b60009081526006602052604090206001015490565b6102a26103173660046119c4565b6107ca565b6040516012815260200161023b565b6102a26103393660046119c4565b6107f4565b61025761034c366004611983565b610872565b6102317f65bc2598cd0c1cfbde76e1a0d2ddb8cd7354c11f21b331697b39c633f2039f9481565b6102a26108f1565b6102a261038e366004611983565b610926565b6102a26103a13660046118fc565b61095a565b6102a26103b43660046118fc565b6109d1565b6102317f2181e19040164582c2f949943320ac53177c4a646eb8c0e28067e6a0245e4b6681565b60055460ff16610257565b6102316103f93660046118fc565b610a45565b6102a2610a91565b6102576104143660046119c4565b610ac3565b61026f610aee565b6102a261042f366004611983565b610afd565b610231600081565b61025761044a366004611983565b610b31565b61025761045d366004611983565b610bb0565b6102a26104703660046118fc565b610d33565b6102317fa60cb0df7bc178038b993aa2e0df2e2cfb6627f4695e4261227d47422ae7e2a681565b6102a26104aa3660046119c4565b610db1565b6102316104bd366004611916565b610dd6565b6102576104d03660046118fc565b60086020526000908152604090205460ff1681565b61050e6104f33660046118fc565b6007602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161023b565b60006001600160e01b03198216637965db0b60e01b148061055757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461056c90611b77565b80601f016020809104026020016040519081016040528092919081815260200182805461059890611b77565b80156105e55780601f106105ba576101008083540402835291602001916105e5565b820191906000526020600020905b8154815290600101906020018083116105c857829003601f168201915b5050505050905090565b60006105f9610e01565b3360008181526008602052604090205460ff16156106325760405162461bcd60e51b815260040161062990611ab6565b60405180910390fd5b6001600160a01b038416600090815260086020526040902054849060ff161561066d5760405162461bcd60e51b815260040161062990611ab6565b6106778585610e49565b92505b505092915050565b7f609e827abab88240ddb8dd7bb4cee4cf8d83acdfe218cc707ce724f882827fb66106ac81610e61565b6001600160a01b0383811660008181526007602052604080822080546001600160a01b0319169487169485179055517f64ef808acffc9b6e84eddda3ebc161f7246c6f57ff7cb39440ee50eb78c1737b9190a3505050565b600061070e610e01565b3360008181526008602052604090205460ff161561073e5760405162461bcd60e51b815260040161062990611ab6565b6001600160a01b038516600090815260086020526040902054859060ff16156107795760405162461bcd60e51b815260040161062990611ab6565b6001600160a01b038516600090815260086020526040902054859060ff16156107b45760405162461bcd60e51b815260040161062990611ab6565b6107bf878787610e6b565b979650505050505050565b6000828152600660205260409020600101546107e581610e61565b6107ef8383610e8f565b505050565b6001600160a01b03811633146108645760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610629565b61086e8282610f15565b5050565b600061087c610e01565b3360008181526008602052604090205460ff16156108ac5760405162461bcd60e51b815260040161062990611ab6565b6001600160a01b038416600090815260086020526040902054849060ff16156108e75760405162461bcd60e51b815260040161062990611ab6565b6106778585610f7c565b7f2181e19040164582c2f949943320ac53177c4a646eb8c0e28067e6a0245e4b6661091b81610e61565b610923610f9e565b50565b7fa60cb0df7bc178038b993aa2e0df2e2cfb6627f4695e4261227d47422ae7e2a661095081610e61565b6107ef8383610ff0565b7f65bc2598cd0c1cfbde76e1a0d2ddb8cd7354c11f21b331697b39c633f2039f9461098481610e61565b6001600160a01b038216600081815260086020526040808220805460ff19166001179055517ff9b68063b051b82957fa193585681240904fed808db8b30fc5a2d2202c6ed6279190a25050565b7f65bc2598cd0c1cfbde76e1a0d2ddb8cd7354c11f21b331697b39c633f2039f946109fb81610e61565b6001600160a01b038216600081815260086020526040808220805460ff19169055517f2b6bf71b58b3583add364b3d9060ebf8019650f65f5be35f5464b9cb3e4ba2d49190a25050565b6001600160a01b03811660009081526008602052604081205460ff1615610a6e57506000919050565b6001600160a01b038216600090815260208190526040902054610557565b919050565b7f2181e19040164582c2f949943320ac53177c4a646eb8c0e28067e6a0245e4b66610abb81610e61565b6109236110cf565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461056c90611b77565b7fa60cb0df7bc178038b993aa2e0df2e2cfb6627f4695e4261227d47422ae7e2a6610b2781610e61565b6107ef838361110c565b6000610b3b610e01565b3360008181526008602052604090205460ff1615610b6b5760405162461bcd60e51b815260040161062990611ab6565b6001600160a01b038416600090815260086020526040902054849060ff1615610ba65760405162461bcd60e51b815260040161062990611ab6565b610677858561125a565b60003383610bde7f25846b3c20f06329bcdf5854b89a74566c7439a968a61587fad19167b9d0eacf83610ac3565b15610c61573360008181526008602052604090205460ff1615610c135760405162461bcd60e51b815260040161062990611ab6565b6001600160a01b038616600090815260086020526040902054869060ff1615610c4e5760405162461bcd60e51b815260040161062990611ab6565b610c5887876112d5565b9450505061067a565b6001600160a01b0382811660009081526007602052604090205481169082161415610cb6573360008181526008602052604090205460ff1615610c135760405162461bcd60e51b815260040161062990611ab6565b610cbe610e01565b3360008181526008602052604090205460ff1615610cee5760405162461bcd60e51b815260040161062990611ab6565b6001600160a01b038616600090815260086020526040902054869060ff1615610d295760405162461bcd60e51b815260040161062990611ab6565b6107bf87876112d5565b7f609e827abab88240ddb8dd7bb4cee4cf8d83acdfe218cc707ce724f882827fb6610d5d81610e61565b6001600160a01b03821660008181526007602052604080822080546001600160a01b0319169055519091907fee60baf98369ef5e677924991f70bcffa00de1982a865066844fd141aee8be6d908390a35050565b600082815260066020526040902060010154610dcc81610e61565b6107ef8383610f15565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055460ff1615610e475760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610629565b565b600033610e578185856112e3565b5060019392505050565b6109238133611407565b600033610e7985828561146b565b610e848585856114e5565b506001949350505050565b610e998282610ac3565b61086e5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610ed13390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610f1f8282610ac3565b1561086e5760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600033610e57818585610f8f8383610dd6565b610f999190611ae6565b6112e3565b610fa66116b3565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166110465760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610629565b80600260008282546110589190611ae6565b90915550506001600160a01b03821660009081526020819052604081208054839290611085908490611ae6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6110d7610e01565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610fd33390565b6001600160a01b03821661116c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610629565b6001600160a01b038216600090815260208190526040902054818110156111e05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610629565b6001600160a01b038316600090815260208190526040812083830390556002805484929061120f908490611b1d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600033816112688286610dd6565b9050838110156112c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610629565b610e8482868684036112e3565b600033610e578185856114e5565b6001600160a01b0383166113455760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610629565b6001600160a01b0382166113a65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610629565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6114118282610ac3565b61086e57611429816001600160a01b031660146116fc565b6114348360206116fc565b604051602001611445929190611a0e565b60408051601f198184030181529082905262461bcd60e51b825261062991600401611a83565b60006114778484610dd6565b905060001981146114df57818110156114d25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610629565b6114df84848484036112e3565b50505050565b6001600160a01b0383166115495760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610629565b6001600160a01b0382166115ab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610629565b6001600160a01b038316600090815260208190526040902054818110156116235760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610629565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061165a908490611ae6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116a691815260200190565b60405180910390a36114df565b60055460ff16610e475760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610629565b6060600061170b836002611afe565b611716906002611ae6565b67ffffffffffffffff81111561173c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611766576020820181803683370190505b509050600360fc1b8160008151811061178f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106117cc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006117f0846002611afe565b6117fb906001611ae6565b90505b600181111561188f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061183d57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061186157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361188881611b60565b90506117fe565b5083156118de5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610629565b9392505050565b80356001600160a01b0381168114610a8c57600080fd5b60006020828403121561190d578081fd5b6118de826118e5565b60008060408385031215611928578081fd5b611931836118e5565b915061193f602084016118e5565b90509250929050565b60008060006060848603121561195c578081fd5b611965846118e5565b9250611973602085016118e5565b9150604084013590509250925092565b60008060408385031215611995578182fd5b61199e836118e5565b946020939093013593505050565b6000602082840312156119bd578081fd5b5035919050565b600080604083850312156119d6578182fd5b8235915061193f602084016118e5565b6000602082840312156119f7578081fd5b81356001600160e01b0319811681146118de578182fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611a46816017850160208801611b34565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611a77816028840160208801611b34565b01602801949350505050565b6020815260008251806020840152611aa2816040850160208701611b34565b601f01601f19169190910160400192915050565b6020808252601690820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b604082015260600190565b60008219821115611af957611af9611bb2565b500190565b6000816000190483118215151615611b1857611b18611bb2565b500290565b600082821015611b2f57611b2f611bb2565b500390565b60005b83811015611b4f578181015183820152602001611b37565b838111156114df5750506000910152565b600081611b6f57611b6f611bb2565b506000190190565b600181811c90821680611b8b57607f821691505b60208210811415611bac57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122060d2efb0e17517ae7748361d78c6d1d456a6d723a74e890d8e786edb3dab1c6764736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000013537461676520434620566f746520546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000075354474346565400000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102055760003560e01c8063537df3b61161011a578063a217fddf116100ad578063d03563ca1161007c578063d03563ca14610475578063d547741f1461049c578063dd62ed3e146104af578063f9f92be4146104c2578063fba09123146104e557600080fd5b8063a217fddf14610434578063a457c2d71461043c578063a9059cbb1461044f578063b5eedef11461046257600080fd5b80638456cb59116100e95780638456cb59146103fe57806391d148541461040657806395d89b41146104195780639dc29fac1461042157600080fd5b8063537df3b6146103a65780635740d23b146103b95780635c975abb146103e057806370a08231146103eb57600080fd5b8063248a9ca31161019d578063395093511161016c578063395093511461033e57806339fe8306146103515780633f4ba83a1461037857806340c10f191461038057806344337ea11461039357600080fd5b8063248a9ca3146102e65780632f2ff15d14610309578063313ce5671461031c57806336568abe1461032b57600080fd5b80630eba3aa7116101d95780630eba3aa71461028f578063129b9ec8146102a457806318160ddd146102cb57806323b872dd146102d357600080fd5b80624638b11461020a57806301ffc9a71461024457806306fdde0314610267578063095ea7b31461027c575b600080fd5b6102317f609e827abab88240ddb8dd7bb4cee4cf8d83acdfe218cc707ce724f882827fb681565b6040519081526020015b60405180910390f35b6102576102523660046119e6565b610526565b604051901515815260200161023b565b61026f61055d565b60405161023b9190611a83565b61025761028a366004611983565b6105ef565b6102a261029d366004611916565b610682565b005b6102317f25846b3c20f06329bcdf5854b89a74566c7439a968a61587fad19167b9d0eacf81565b600254610231565b6102576102e1366004611948565b610704565b6102316102f43660046119ac565b60009081526006602052604090206001015490565b6102a26103173660046119c4565b6107ca565b6040516012815260200161023b565b6102a26103393660046119c4565b6107f4565b61025761034c366004611983565b610872565b6102317f65bc2598cd0c1cfbde76e1a0d2ddb8cd7354c11f21b331697b39c633f2039f9481565b6102a26108f1565b6102a261038e366004611983565b610926565b6102a26103a13660046118fc565b61095a565b6102a26103b43660046118fc565b6109d1565b6102317f2181e19040164582c2f949943320ac53177c4a646eb8c0e28067e6a0245e4b6681565b60055460ff16610257565b6102316103f93660046118fc565b610a45565b6102a2610a91565b6102576104143660046119c4565b610ac3565b61026f610aee565b6102a261042f366004611983565b610afd565b610231600081565b61025761044a366004611983565b610b31565b61025761045d366004611983565b610bb0565b6102a26104703660046118fc565b610d33565b6102317fa60cb0df7bc178038b993aa2e0df2e2cfb6627f4695e4261227d47422ae7e2a681565b6102a26104aa3660046119c4565b610db1565b6102316104bd366004611916565b610dd6565b6102576104d03660046118fc565b60086020526000908152604090205460ff1681565b61050e6104f33660046118fc565b6007602052600090815260409020546001600160a01b031681565b6040516001600160a01b03909116815260200161023b565b60006001600160e01b03198216637965db0b60e01b148061055757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461056c90611b77565b80601f016020809104026020016040519081016040528092919081815260200182805461059890611b77565b80156105e55780601f106105ba576101008083540402835291602001916105e5565b820191906000526020600020905b8154815290600101906020018083116105c857829003601f168201915b5050505050905090565b60006105f9610e01565b3360008181526008602052604090205460ff16156106325760405162461bcd60e51b815260040161062990611ab6565b60405180910390fd5b6001600160a01b038416600090815260086020526040902054849060ff161561066d5760405162461bcd60e51b815260040161062990611ab6565b6106778585610e49565b92505b505092915050565b7f609e827abab88240ddb8dd7bb4cee4cf8d83acdfe218cc707ce724f882827fb66106ac81610e61565b6001600160a01b0383811660008181526007602052604080822080546001600160a01b0319169487169485179055517f64ef808acffc9b6e84eddda3ebc161f7246c6f57ff7cb39440ee50eb78c1737b9190a3505050565b600061070e610e01565b3360008181526008602052604090205460ff161561073e5760405162461bcd60e51b815260040161062990611ab6565b6001600160a01b038516600090815260086020526040902054859060ff16156107795760405162461bcd60e51b815260040161062990611ab6565b6001600160a01b038516600090815260086020526040902054859060ff16156107b45760405162461bcd60e51b815260040161062990611ab6565b6107bf878787610e6b565b979650505050505050565b6000828152600660205260409020600101546107e581610e61565b6107ef8383610e8f565b505050565b6001600160a01b03811633146108645760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610629565b61086e8282610f15565b5050565b600061087c610e01565b3360008181526008602052604090205460ff16156108ac5760405162461bcd60e51b815260040161062990611ab6565b6001600160a01b038416600090815260086020526040902054849060ff16156108e75760405162461bcd60e51b815260040161062990611ab6565b6106778585610f7c565b7f2181e19040164582c2f949943320ac53177c4a646eb8c0e28067e6a0245e4b6661091b81610e61565b610923610f9e565b50565b7fa60cb0df7bc178038b993aa2e0df2e2cfb6627f4695e4261227d47422ae7e2a661095081610e61565b6107ef8383610ff0565b7f65bc2598cd0c1cfbde76e1a0d2ddb8cd7354c11f21b331697b39c633f2039f9461098481610e61565b6001600160a01b038216600081815260086020526040808220805460ff19166001179055517ff9b68063b051b82957fa193585681240904fed808db8b30fc5a2d2202c6ed6279190a25050565b7f65bc2598cd0c1cfbde76e1a0d2ddb8cd7354c11f21b331697b39c633f2039f946109fb81610e61565b6001600160a01b038216600081815260086020526040808220805460ff19169055517f2b6bf71b58b3583add364b3d9060ebf8019650f65f5be35f5464b9cb3e4ba2d49190a25050565b6001600160a01b03811660009081526008602052604081205460ff1615610a6e57506000919050565b6001600160a01b038216600090815260208190526040902054610557565b919050565b7f2181e19040164582c2f949943320ac53177c4a646eb8c0e28067e6a0245e4b66610abb81610e61565b6109236110cf565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461056c90611b77565b7fa60cb0df7bc178038b993aa2e0df2e2cfb6627f4695e4261227d47422ae7e2a6610b2781610e61565b6107ef838361110c565b6000610b3b610e01565b3360008181526008602052604090205460ff1615610b6b5760405162461bcd60e51b815260040161062990611ab6565b6001600160a01b038416600090815260086020526040902054849060ff1615610ba65760405162461bcd60e51b815260040161062990611ab6565b610677858561125a565b60003383610bde7f25846b3c20f06329bcdf5854b89a74566c7439a968a61587fad19167b9d0eacf83610ac3565b15610c61573360008181526008602052604090205460ff1615610c135760405162461bcd60e51b815260040161062990611ab6565b6001600160a01b038616600090815260086020526040902054869060ff1615610c4e5760405162461bcd60e51b815260040161062990611ab6565b610c5887876112d5565b9450505061067a565b6001600160a01b0382811660009081526007602052604090205481169082161415610cb6573360008181526008602052604090205460ff1615610c135760405162461bcd60e51b815260040161062990611ab6565b610cbe610e01565b3360008181526008602052604090205460ff1615610cee5760405162461bcd60e51b815260040161062990611ab6565b6001600160a01b038616600090815260086020526040902054869060ff1615610d295760405162461bcd60e51b815260040161062990611ab6565b6107bf87876112d5565b7f609e827abab88240ddb8dd7bb4cee4cf8d83acdfe218cc707ce724f882827fb6610d5d81610e61565b6001600160a01b03821660008181526007602052604080822080546001600160a01b0319169055519091907fee60baf98369ef5e677924991f70bcffa00de1982a865066844fd141aee8be6d908390a35050565b600082815260066020526040902060010154610dcc81610e61565b6107ef8383610f15565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055460ff1615610e475760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610629565b565b600033610e578185856112e3565b5060019392505050565b6109238133611407565b600033610e7985828561146b565b610e848585856114e5565b506001949350505050565b610e998282610ac3565b61086e5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055610ed13390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b610f1f8282610ac3565b1561086e5760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600033610e57818585610f8f8383610dd6565b610f999190611ae6565b6112e3565b610fa66116b3565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0382166110465760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610629565b80600260008282546110589190611ae6565b90915550506001600160a01b03821660009081526020819052604081208054839290611085908490611ae6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6110d7610e01565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610fd33390565b6001600160a01b03821661116c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610629565b6001600160a01b038216600090815260208190526040902054818110156111e05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610629565b6001600160a01b038316600090815260208190526040812083830390556002805484929061120f908490611b1d565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600033816112688286610dd6565b9050838110156112c85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610629565b610e8482868684036112e3565b600033610e578185856114e5565b6001600160a01b0383166113455760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610629565b6001600160a01b0382166113a65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610629565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6114118282610ac3565b61086e57611429816001600160a01b031660146116fc565b6114348360206116fc565b604051602001611445929190611a0e565b60408051601f198184030181529082905262461bcd60e51b825261062991600401611a83565b60006114778484610dd6565b905060001981146114df57818110156114d25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610629565b6114df84848484036112e3565b50505050565b6001600160a01b0383166115495760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610629565b6001600160a01b0382166115ab5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610629565b6001600160a01b038316600090815260208190526040902054818110156116235760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610629565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061165a908490611ae6565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116a691815260200190565b60405180910390a36114df565b60055460ff16610e475760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610629565b6060600061170b836002611afe565b611716906002611ae6565b67ffffffffffffffff81111561173c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611766576020820181803683370190505b509050600360fc1b8160008151811061178f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106117cc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060006117f0846002611afe565b6117fb906001611ae6565b90505b600181111561188f576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061183d57634e487b7160e01b600052603260045260246000fd5b1a60f81b82828151811061186157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c9361188881611b60565b90506117fe565b5083156118de5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610629565b9392505050565b80356001600160a01b0381168114610a8c57600080fd5b60006020828403121561190d578081fd5b6118de826118e5565b60008060408385031215611928578081fd5b611931836118e5565b915061193f602084016118e5565b90509250929050565b60008060006060848603121561195c578081fd5b611965846118e5565b9250611973602085016118e5565b9150604084013590509250925092565b60008060408385031215611995578182fd5b61199e836118e5565b946020939093013593505050565b6000602082840312156119bd578081fd5b5035919050565b600080604083850312156119d6578182fd5b8235915061193f602084016118e5565b6000602082840312156119f7578081fd5b81356001600160e01b0319811681146118de578182fd5b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351611a46816017850160208801611b34565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351611a77816028840160208801611b34565b01602801949350505050565b6020815260008251806020840152611aa2816040850160208701611b34565b601f01601f19169190910160400192915050565b6020808252601690820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b604082015260600190565b60008219821115611af957611af9611bb2565b500190565b6000816000190483118215151615611b1857611b18611bb2565b500290565b600082821015611b2f57611b2f611bb2565b500390565b60005b83811015611b4f578181015183820152602001611b37565b838111156114df5750506000910152565b600081611b6f57611b6f611bb2565b506000190190565b600181811c90821680611b8b57607f821691505b60208210811415611bac57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122060d2efb0e17517ae7748361d78c6d1d456a6d723a74e890d8e786edb3dab1c6764736f6c63430008040033

Deployed Bytecode Sourcemap

228:6674:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;661:118;;731:48;661:118;;;;;3392:25:14;;;3380:2;3365:18;661:118:13;;;;;;;;2606:202:0;;;;;;:::i;:::-;;:::i;:::-;;;3219:14:14;;3212:22;3194:41;;3182:2;3167:18;2606:202:0;3149:92:14;2156:98:4;;;:::i;:::-;;;;;;;:::i;5272:252:13:-;;;;;;:::i;:::-;;:::i;2690:307::-;;;;;;:::i;:::-;;:::i;:::-;;287:92;;344:35;287:92;;3244:106:4;3331:12;;3244:106;;5530:353:13;;;;;;:::i;:::-;;:::i;4391:129:0:-;;;;;;:::i;:::-;4465:7;4491:12;;;:6;:12;;;;;:22;;;;4391:129;4816:145;;;;;;:::i;:::-;;:::i;3093:91:4:-;;;3175:2;9916:36:14;;9904:2;9889:18;3093:91:4;9871:87:14;5925:214:0;;;;;;:::i;:::-;;:::i;5889:280:13:-;;;;;;:::i;:::-;;:::i;557:98::-;;617:38;557:98;;4156:84;;;:::i;3617:110::-;;;;;;:::i;:::-;;:::i;1928:188::-;;;;;;:::i;:::-;;:::i;2292:198::-;;;;;;:::i;:::-;;:::i;385:84::-;;438:31;385:84;;1615::3;1685:7;;;;1615:84;;4559:210:13;;;;;;:::i;:::-;;:::i;4388:80::-;;;:::i;2895:145:0:-;;;;;;:::i;:::-;;:::i;2367:102:4:-;;;:::i;3866:140:13:-;;;;;;:::i;:::-;;:::i;2027:49:0:-;;2072:4;2027:49;;6175:290:13;;;;;;:::i;:::-;;:::i;4970:296::-;;;;;;:::i;:::-;;:::i;3202:276::-;;;;;;:::i;:::-;;:::i;475:76::-;;524:27;475:76;;5241:147:0;;;;;;:::i;:::-;;:::i;3976:149:4:-;;;;;;:::i;:::-;;:::i;845:41:13:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;786:53;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;786:53:13;;;;;;-1:-1:-1;;;;;3010:32:14;;;2992:51;;2980:2;2965:18;786:53:13;2947:102:14;2606:202:0;2691:4;-1:-1:-1;;;;;;2714:47:0;;-1:-1:-1;;;2714:47:0;;:87;;-1:-1:-1;;;;;;;;;;937:40:9;;;2765:36:0;2707:94;2606:202;-1:-1:-1;;2606:202:0:o;2156:98:4:-;2210:13;2242:5;2235:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156:98;:::o;5272:252:13:-;5460:4;1239:19:3;:17;:19::i;:::-;5399:10:13::1;6837:18;::::0;;;:9:::1;:18;::::0;;;;;::::1;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::1;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1::0;;;;;6837:18:13;::::2;;::::0;;;:9:::2;:18;::::0;;;;;5434:7;;6837:18:::2;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::2;;;;;;;:::i;:::-;5487:30:::3;5501:7;5510:6;5487:13;:30::i;:::-;5480:37;;6892:1;::::2;1268::3::1;5272:252:13::0;;;;:::o;2690:307::-;731:48;2505:16:0;2516:4;2505:10;:16::i;:::-;-1:-1:-1;;;;;2861:35:13;;::::1;;::::0;;;:18:::1;:35;::::0;;;;;:54;;-1:-1:-1;;;;;;2861:54:13::1;::::0;;::::1;::::0;;::::1;::::0;;2930:60;::::1;::::0;2861:35;2930:60:::1;2690:307:::0;;;:::o;5530:353::-;5804:4;1239:19:3;:17;:19::i;:::-;5710:10:13::1;6837:18;::::0;;;:9:::1;:18;::::0;;;;;::::1;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;6837:18:13;::::2;;::::0;;;:9:::2;:18;::::0;;;;;5745:6;;6837:18:::2;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::2;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;6837:18:13;::::3;;::::0;;;:9:::3;:18;::::0;;;;;5776:9;;6837:18:::3;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::3;;;;;;;:::i;:::-;5831:45:::4;5850:6;5858:9;5869:6;5831:18;:45::i;:::-;5824:52:::0;5530:353;-1:-1:-1;;;;;;;5530:353:13:o;4816:145:0:-;4465:7;4491:12;;;:6;:12;;;;;:22;;;2505:16;2516:4;2505:10;:16::i;:::-;4929:25:::1;4940:4;4946:7;4929:10;:25::i;:::-;4816:145:::0;;;:::o;5925:214::-;-1:-1:-1;;;;;6020:23:0;;719:10:7;6020:23:0;6012:83;;;;-1:-1:-1;;;6012:83:0;;9018:2:14;6012:83:0;;;9000:21:14;9057:2;9037:18;;;9030:30;9096:34;9076:18;;;9069:62;-1:-1:-1;;;9147:18:14;;;9140:45;9202:19;;6012:83:0;8990:237:14;6012:83:0;6106:26;6118:4;6124:7;6106:11;:26::i;:::-;5925:214;;:::o;5889:280:13:-;6091:4;1239:19:3;:17;:19::i;:::-;6030:10:13::1;6837:18;::::0;;;:9:::1;:18;::::0;;;;;::::1;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;6837:18:13;::::2;;::::0;;;:9:::2;:18;::::0;;;;;6065:7;;6837:18:::2;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::2;;;;;;;:::i;:::-;6118:44:::3;6142:7;6151:10;6118:23;:44::i;4156:84::-:0;438:31;2505:16:0;2516:4;2505:10;:16::i;:::-;4223:10:13::1;:8;:10::i;:::-;4156:84:::0;:::o;3617:110::-;524:27;2505:16:0;2516:4;2505:10;:16::i;:::-;3703:17:13::1;3709:2;3713:6;3703:5;:17::i;1928:188::-:0;617:38;2505:16:0;2516:4;2505:10;:16::i;:::-;-1:-1:-1;;;;;2044:18:13;::::1;;::::0;;;:9:::1;:18;::::0;;;;;:25;;-1:-1:-1;;2044:25:13::1;2065:4;2044:25;::::0;;2084;::::1;::::0;2044:18;2084:25:::1;1928:188:::0;;:::o;2292:198::-;617:38;2505:16:0;2516:4;2505:10;:16::i;:::-;-1:-1:-1;;;;;2413:18:13;::::1;2434:5;2413:18:::0;;;:9:::1;:18;::::0;;;;;:26;;-1:-1:-1;;2413:26:13::1;::::0;;2454:29;::::1;::::0;2434:5;2454:29:::1;2292:198:::0;;:::o;4559:210::-;-1:-1:-1;;;;;4648:18:13;;4625:7;4648:18;;;:9;:18;;;;;;;;4644:119;;;-1:-1:-1;4689:1:13;;4559:210;-1:-1:-1;4559:210:13:o;4644:119::-;-1:-1:-1;;;;;3508:18:4;;3482:7;3508:18;;;;;;;;;;;4728:24:13;3408:125:4;4644:119:13;4559:210;;;:::o;4388:80::-;438:31;2505:16:0;2516:4;2505:10;:16::i;:::-;4453:8:13::1;:6;:8::i;2895:145:0:-:0;2981:4;3004:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;3004:29:0;;;;;;;;;;;;;;;2895:145::o;2367:102:4:-;2423:13;2455:7;2448:14;;;;;:::i;3866:140:13:-;524:27;2505:16:0;2516:4;2505:10;:16::i;:::-;3977:22:13::1;3983:7;3992:6;3977:5;:22::i;6175:290::-:0;6382:4;1239:19:3;:17;:19::i;:::-;6321:10:13::1;6837:18;::::0;;;:9:::1;:18;::::0;;;;;::::1;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;6837:18:13;::::2;;::::0;;;:9:::2;:18;::::0;;;;;6356:7;;6837:18:::2;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::2;;;;;;;:::i;:::-;6409:49:::3;6433:7;6442:15;6409:23;:49::i;4970:296::-:0;5199:4;5090:10;5102:9;6556:39;344:35;6588:6;6556:7;:39::i;:::-;6552:213;;;5136:10:::1;6837:18;::::0;;;:9:::1;:18;::::0;;;;;::::1;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;6837:18:13;::::2;;::::0;;;:9:::2;:18;::::0;;;;;5171:9;;6837:18:::2;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::2;;;;;;;:::i;:::-;5226:33:::3;5241:9;5252:6;5226:14;:33::i;:::-;5219:40;;6892:1:::2;6611::::1;6552:213:::0;;;-1:-1:-1;;;;;6633:26:13;;;;;;;:18;:26;;;;;;;;:39;;;;6629:136;;;5136:10:::1;6837:18;::::0;;;:9:::1;:18;::::0;;;;;::::1;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::1;;;;;;;:::i;6629:136::-:0;6720:19;:17;:19::i;:::-;5136:10:::1;6837:18;::::0;;;:9:::1;:18;::::0;;;;;::::1;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;6837:18:13;::::2;;::::0;;;:9:::2;:18;::::0;;;;;5171:9;;6837:18:::2;;6836:19;6828:54;;;;-1:-1:-1::0;;;6828:54:13::2;;;;;;;:::i;:::-;5226:33:::3;5241:9;5252:6;5226:14;:33::i;3202:276::-:0;731:48;2505:16:0;2516:4;2505:10;:16::i;:::-;-1:-1:-1;;;;;3350:35:13;::::1;3396:1;3350:35:::0;;;:18:::1;:35;::::0;;;;;:48;;-1:-1:-1;;;;;;3350:48:13::1;::::0;;3413:58;3396:1;;3350:35;3413:58:::1;::::0;3396:1;;3413:58:::1;3202:276:::0;;:::o;5241:147:0:-;4465:7;4491:12;;;:6;:12;;;;;:22;;;2505:16;2516:4;2505:10;:16::i;:::-;5355:26:::1;5367:4;5373:7;5355:11;:26::i;3976:149:4:-:0;-1:-1:-1;;;;;4091:18:4;;;4065:7;4091:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3976:149::o;1767:106:3:-;1685:7;;;;1836:9;1828:38;;;;-1:-1:-1;;;1828:38:3;;6703:2:14;1828:38:3;;;6685:21:14;6742:2;6722:18;;;6715:30;-1:-1:-1;;;6761:18:14;;;6754:46;6817:18;;1828:38:3;6675:166:14;1828:38:3;1767:106::o;4433:197:4:-;4516:4;719:10:7;4570:32:4;719:10:7;4586:7:4;4595:6;4570:8;:32::i;:::-;-1:-1:-1;4619:4:4;;4433:197;-1:-1:-1;;;4433:197:4:o;3334:103:0:-;3400:30;3411:4;719:10:7;3400::0;:30::i;5192:286:4:-;5319:4;719:10:7;5375:38:4;5391:4;719:10:7;5406:6:4;5375:15;:38::i;:::-;5423:27;5433:4;5439:2;5443:6;5423:9;:27::i;:::-;-1:-1:-1;5467:4:4;;5192:286;-1:-1:-1;;;;5192:286:4:o;7474:233:0:-;7557:22;7565:4;7571:7;7557;:22::i;:::-;7552:149;;7595:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;7595:29:0;;;;;;;;;:36;;-1:-1:-1;;7595:36:0;7627:4;7595:36;;;7677:12;719:10:7;;640:96;7677:12:0;-1:-1:-1;;;;;7650:40:0;7668:7;-1:-1:-1;;;;;7650:40:0;7662:4;7650:40;;;;;;;;;;7474:233;;:::o;7878:234::-;7961:22;7969:4;7975:7;7961;:22::i;:::-;7957:149;;;8031:5;7999:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;7999:29:0;;;;;;;;;;:37;;-1:-1:-1;;7999:37:0;;;8055:40;719:10:7;;7999:12:0;;8055:40;;8031:5;8055:40;7878:234;;:::o;5873::4:-;5961:4;719:10:7;6015:64:4;719:10:7;6031:7:4;6068:10;6040:25;719:10:7;6031:7:4;6040:9;:25::i;:::-;:38;;;;:::i;:::-;6015:8;:64::i;2433:117:3:-;1486:16;:14;:16::i;:::-;2491:7:::1;:15:::0;;-1:-1:-1;;2491:15:3::1;::::0;;2521:22:::1;719:10:7::0;2530:12:3::1;2521:22;::::0;-1:-1:-1;;;;;3010:32:14;;;2992:51;;2980:2;2965:18;2521:22:3::1;;;;;;;2433:117::o:0;8402:389:4:-;-1:-1:-1;;;;;8485:21:4;;8477:65;;;;-1:-1:-1;;;8477:65:4;;9434:2:14;8477:65:4;;;9416:21:14;9473:2;9453:18;;;9446:30;9512:33;9492:18;;;9485:61;9563:18;;8477:65:4;9406:181:14;8477:65:4;8629:6;8613:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8645:18:4;;:9;:18;;;;;;;;;;:28;;8667:6;;8645:9;:28;;8667:6;;8645:28;:::i;:::-;;;;-1:-1:-1;;8688:37:4;;3392:25:14;;;-1:-1:-1;;;;;8688:37:4;;;8705:1;;8688:37;;3380:2:14;3365:18;8688:37:4;;;;;;;5925:214:0;;:::o;2186:115:3:-;1239:19;:17;:19::i;:::-;2245:7:::1;:14:::0;;-1:-1:-1;;2245:14:3::1;2255:4;2245:14;::::0;;2274:20:::1;2281:12;719:10:7::0;;640:96;9111:576:4;-1:-1:-1;;;;;9194:21:4;;9186:67;;;;-1:-1:-1;;;9186:67:4;;7048:2:14;9186:67:4;;;7030:21:14;7087:2;7067:18;;;7060:30;7126:34;7106:18;;;7099:62;-1:-1:-1;;;7177:18:14;;;7170:31;7218:19;;9186:67:4;7020:223:14;9186:67:4;-1:-1:-1;;;;;9349:18:4;;9324:22;9349:18;;;;;;;;;;;9385:24;;;;9377:71;;;;-1:-1:-1;;;9377:71:4;;5132:2:14;9377:71:4;;;5114:21:14;5171:2;5151:18;;;5144:30;5210:34;5190:18;;;5183:62;-1:-1:-1;;;5261:18:14;;;5254:32;5303:19;;9377:71:4;5104:224:14;9377:71:4;-1:-1:-1;;;;;9482:18:4;;:9;:18;;;;;;;;;;9503:23;;;9482:44;;9546:12;:22;;9520:6;;9482:9;9546:22;;9520:6;;9546:22;:::i;:::-;;;;-1:-1:-1;;9584:37:4;;3392:25:14;;;9610:1:4;;-1:-1:-1;;;;;9584:37:4;;;;;3380:2:14;3365:18;9584:37:4;;;;;;;4816:145:0;;;:::o;6594:427:4:-;6687:4;719:10:7;6687:4:4;6768:25;719:10:7;6785:7:4;6768:9;:25::i;:::-;6741:52;;6831:15;6811:16;:35;;6803:85;;;;-1:-1:-1;;;6803:85:4;;8612:2:14;6803:85:4;;;8594:21:14;8651:2;8631:18;;;8624:30;8690:34;8670:18;;;8663:62;-1:-1:-1;;;8741:18:14;;;8734:35;8786:19;;6803:85:4;8584:227:14;6803:85:4;6922:60;6931:5;6938:7;6966:15;6947:16;:34;6922:8;:60::i;3729:189::-;3808:4;719:10:7;3862:28:4;719:10:7;3879:2:4;3883:6;3862:9;:28::i;10110:370::-;-1:-1:-1;;;;;10241:19:4;;10233:68;;;;-1:-1:-1;;;10233:68:4;;7856:2:14;10233:68:4;;;7838:21:14;7895:2;7875:18;;;7868:30;7934:34;7914:18;;;7907:62;-1:-1:-1;;;7985:18:14;;;7978:34;8029:19;;10233:68:4;7828:226:14;10233:68:4;-1:-1:-1;;;;;10319:21:4;;10311:68;;;;-1:-1:-1;;;10311:68:4;;5535:2:14;10311:68:4;;;5517:21:14;5574:2;5554:18;;;5547:30;5613:34;5593:18;;;5586:62;-1:-1:-1;;;5664:18:14;;;5657:32;5706:19;;10311:68:4;5507:224:14;10311:68:4;-1:-1:-1;;;;;10390:18:4;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10441:32;;3392:25:14;;;10441:32:4;;3365:18:14;10441:32:4;;;;;;;10110:370;;;:::o;3718:492:0:-;3806:22;3814:4;3820:7;3806;:22::i;:::-;3801:403;;3989:41;4017:7;-1:-1:-1;;;;;3989:41:0;4027:2;3989:19;:41::i;:::-;4101:38;4129:4;4136:2;4101:19;:38::i;:::-;3896:265;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;3896:265:0;;;;;;;;;;-1:-1:-1;;;3844:349:0;;;;;;;:::i;10761:441:4:-;10891:24;10918:25;10928:5;10935:7;10918:9;:25::i;:::-;10891:52;;-1:-1:-1;;10957:16:4;:37;10953:243;;11038:6;11018:16;:26;;11010:68;;;;-1:-1:-1;;;11010:68:4;;5938:2:14;11010:68:4;;;5920:21:14;5977:2;5957:18;;;5950:30;6016:31;5996:18;;;5989:59;6065:18;;11010:68:4;5910:179:14;11010:68:4;11120:51;11129:5;11136:7;11164:6;11145:16;:25;11120:8;:51::i;:::-;10761:441;;;;:::o;7475:651::-;-1:-1:-1;;;;;7601:18:4;;7593:68;;;;-1:-1:-1;;;7593:68:4;;7450:2:14;7593:68:4;;;7432:21:14;7489:2;7469:18;;;7462:30;7528:34;7508:18;;;7501:62;-1:-1:-1;;;7579:18:14;;;7572:35;7624:19;;7593:68:4;7422:227:14;7593:68:4;-1:-1:-1;;;;;7679:16:4;;7671:64;;;;-1:-1:-1;;;7671:64:4;;4379:2:14;7671:64:4;;;4361:21:14;4418:2;4398:18;;;4391:30;4457:34;4437:18;;;4430:62;-1:-1:-1;;;4508:18:14;;;4501:33;4551:19;;7671:64:4;4351:225:14;7671:64:4;-1:-1:-1;;;;;7817:15:4;;7795:19;7817:15;;;;;;;;;;;7850:21;;;;7842:72;;;;-1:-1:-1;;;7842:72:4;;6296:2:14;7842:72:4;;;6278:21:14;6335:2;6315:18;;;6308:30;6374:34;6354:18;;;6347:62;-1:-1:-1;;;6425:18:14;;;6418:36;6471:19;;7842:72:4;6268:228:14;7842:72:4;-1:-1:-1;;;;;7948:15:4;;;:9;:15;;;;;;;;;;;7966:20;;;7948:38;;8006:13;;;;;;;;:23;;7980:6;;7948:9;8006:23;;7980:6;;8006:23;:::i;:::-;;;;;;;;8060:2;-1:-1:-1;;;;;8045:26:4;8054:4;-1:-1:-1;;;;;8045:26:4;;8064:6;8045:26;;;;3392:25:14;;3380:2;3365:18;;3347:76;8045:26:4;;;;;;;;8082:37;4816:145:0;1945:106:3;1685:7;;;;2003:41;;;;-1:-1:-1;;;2003:41:3;;4783:2:14;2003:41:3;;;4765:21:14;4822:2;4802:18;;;4795:30;-1:-1:-1;;;4841:18:14;;;4834:50;4901:18;;2003:41:3;4755:170:14;1652:441:8;1727:13;1752:19;1784:10;1788:6;1784:1;:10;:::i;:::-;:14;;1797:1;1784:14;:::i;:::-;1774:25;;;;;;-1:-1:-1;;;1774:25:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1774:25:8;;1752:47;;-1:-1:-1;;;1809:6:8;1816:1;1809:9;;;;;;-1:-1:-1;;;1809:9:8;;;;;;;;;;;;:15;-1:-1:-1;;;;;1809:15:8;;;;;;;;;-1:-1:-1;;;1834:6:8;1841:1;1834:9;;;;;;-1:-1:-1;;;1834:9:8;;;;;;;;;;;;:15;-1:-1:-1;;;;;1834:15:8;;;;;;;;-1:-1:-1;1864:9:8;1876:10;1880:6;1876:1;:10;:::i;:::-;:14;;1889:1;1876:14;:::i;:::-;1864:26;;1859:132;1896:1;1892;:5;1859:132;;;-1:-1:-1;;;1943:5:8;1951:3;1943:11;1930:25;;;;;-1:-1:-1;;;1930:25:8;;;;;;;;;;;;1918:6;1925:1;1918:9;;;;;;-1:-1:-1;;;1918:9:8;;;;;;;;;;;;:37;-1:-1:-1;;;;;1918:37:8;;;;;;;;-1:-1:-1;1979:1:8;1969:11;;;;;1899:3;;;:::i;:::-;;;1859:132;;;-1:-1:-1;2008:10:8;;2000:55;;;;-1:-1:-1;;;2000:55:8;;4018:2:14;2000:55:8;;;4000:21:14;;;4037:18;;;4030:30;4096:34;4076:18;;;4069:62;4148:18;;2000:55:8;3990:182:14;2000:55:8;2079:6;1652:441;-1:-1:-1;;;1652:441:8:o;14:173:14:-;82:20;;-1:-1:-1;;;;;131:31:14;;121:42;;111:2;;177:1;174;167:12;192:196;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:14:o;1280:190::-;1339:6;1392:2;1380:9;1371:7;1367:23;1363:32;1360:2;;;1413:6;1405;1398:22;1360:2;-1:-1:-1;1441:23:14;;1350:120;-1:-1:-1;1350:120:14:o;1475:264::-;1543:6;1551;1604:2;1592:9;1583:7;1579:23;1575:32;1572:2;;;1625:6;1617;1610:22;1572:2;1666:9;1653:23;1643:33;;1695:38;1729:2;1718:9;1714:18;1695:38;:::i;1744:306::-;1802:6;1855:2;1843:9;1834:7;1830:23;1826:32;1823:2;;;1876:6;1868;1861:22;1823:2;1907:23;;-1:-1:-1;;;;;;1959:32:14;;1949:43;;1939:2;;2011:6;2003;1996:22;2055:786;2466:25;2461:3;2454:38;2436:3;2521:6;2515:13;2537:62;2592:6;2587:2;2582:3;2578:12;2571:4;2563:6;2559:17;2537:62;:::i;:::-;-1:-1:-1;;;2658:2:14;2618:16;;;2650:11;;;2643:40;2708:13;;2730:63;2708:13;2779:2;2771:11;;2764:4;2752:17;;2730:63;:::i;:::-;2813:17;2832:2;2809:26;;2444:397;-1:-1:-1;;;;2444:397:14:o;3428:383::-;3577:2;3566:9;3559:21;3540:4;3609:6;3603:13;3652:6;3647:2;3636:9;3632:18;3625:34;3668:66;3727:6;3722:2;3711:9;3707:18;3702:2;3694:6;3690:15;3668:66;:::i;:::-;3795:2;3774:15;-1:-1:-1;;3770:29:14;3755:45;;;;3802:2;3751:54;;3549:262;-1:-1:-1;;3549:262:14:o;8059:346::-;8261:2;8243:21;;;8300:2;8280:18;;;8273:30;-1:-1:-1;;;8334:2:14;8319:18;;8312:52;8396:2;8381:18;;8233:172::o;9963:128::-;10003:3;10034:1;10030:6;10027:1;10024:13;10021:2;;;10040:18;;:::i;:::-;-1:-1:-1;10076:9:14;;10011:80::o;10096:168::-;10136:7;10202:1;10198;10194:6;10190:14;10187:1;10184:21;10179:1;10172:9;10165:17;10161:45;10158:2;;;10209:18;;:::i;:::-;-1:-1:-1;10249:9:14;;10148:116::o;10269:125::-;10309:4;10337:1;10334;10331:8;10328:2;;;10342:18;;:::i;:::-;-1:-1:-1;10379:9:14;;10318:76::o;10399:258::-;10471:1;10481:113;10495:6;10492:1;10489:13;10481:113;;;10571:11;;;10565:18;10552:11;;;10545:39;10517:2;10510:10;10481:113;;;10612:6;10609:1;10606:13;10603:2;;;-1:-1:-1;;10647:1:14;10629:16;;10622:27;10452:205::o;10662:136::-;10701:3;10729:5;10719:2;;10738:18;;:::i;:::-;-1:-1:-1;;;10774:18:14;;10709:89::o;10803:380::-;10882:1;10878:12;;;;10925;;;10946:2;;11000:4;10992:6;10988:17;10978:27;;10946:2;11053;11045:6;11042:14;11022:18;11019:38;11016:2;;;11099:10;11094:3;11090:20;11087:1;11080:31;11134:4;11131:1;11124:15;11162:4;11159:1;11152:15;11016:2;;10858:325;;;:::o;11188:127::-;11249:10;11244:3;11240:20;11237:1;11230:31;11280:4;11277:1;11270:15;11304:4;11301:1;11294:15

Swarm Source

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