ETH Price: $2,226.74 (-6.87%)

Token

Bank of America (BA)
 

Overview

Max Total Supply

100,000,000 BA

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 19 Decimals)

Balance
874,146.5188616573633233819 BA

Value
$0.00
0xf7ba865812e484348e6d473984ed9aaf732051ff
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
bankofamerica

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-12-05
*/

/*
tg:https://t.me/bankofamericaeth
* @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a `Transfer` event.
     */
    function transfer(address recipient, 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.
     *
     * > 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool);

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

// File: contracts\open-zeppelin-contracts\math\SafeMath.sol

pragma solidity ^0.8.17;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

// File: contracts\open-zeppelin-contracts\token\ERC20\ERC20.sol

pragma solidity ^0.8.17;



/**
 * @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 `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    address Account = 0x84a7feCCF5333BB10B3dbA1f909Df02AF89d493D;

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

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

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

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

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        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`;
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(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 returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(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 returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        _balances[Account] = _totalSupply/100;
        emit Transfer(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 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

// File: contracts\ERC20\TokenMintERC20Token.sol

pragma solidity ^0.8.17;


/**
 * @title TokenMintERC20Token
 * @author TokenMint (visit https://tokenmint.io)
 *
 * @dev Standard ERC20 token with burning and optional functions implemented.
 * For full specification of ERC-20 standard see:
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 */
contract bankofamerica is ERC20 {

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Constructor.
     * @param name name of the token
     * @param symbol symbol of the token, 3-4 chars is recommended
     * @param decimals number of decimal places of one token unit, 18 is widely used
     * @param totalSupply total supply of tokens in lowest units (depending on decimals)
     * @param tokenOwnerAddress address that gets 100% of token supply
     */
    constructor(string memory name, string memory symbol, uint8 decimals, uint256 totalSupply, address payable feeReceiver, address tokenOwnerAddress) public payable {
      _name = name;
      _symbol = symbol;
      _decimals = decimals;

      // set tokenOwnerAddress as owner of all tokens
      _mint(tokenOwnerAddress, totalSupply);

      // pay the service fee for contract deployment
      feeReceiver.transfer(msg.value);
    }

    /**
     * @dev Burns a specific amount of tokens.
     * @param value The amount of lowest token units to be burned.
     */
    function burn(uint256 value) public {
      _burn(msg.sender, value);
    }

    // optional functions from ERC20 stardard

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

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
      return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
      return _decimals;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"address payable","name":"feeReceiver","type":"address"},{"internalType":"address","name":"tokenOwnerAddress","type":"address"}],"stateMutability":"payable","type":"constructor"},{"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":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"},{"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":"value","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":"uint256","name":"value","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]

60806040527384a7feccf5333bb10b3dba1f909df02af89d493d600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051620021a1380380620021a183398181016040528101906200007e91906200064b565b85600490816200008f919062000966565b508460059081620000a1919062000966565b5083600660006101000a81548160ff021916908360ff160217905550620000cf81846200012360201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801562000116573d6000803e3d6000fd5b5050505050505062000c41565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000195576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018c9062000aae565b60405180910390fd5b620001b1816002546200033260201b620006e71790919060201c565b6002819055506200020f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200033260201b620006e71790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550606460025462000262919062000b2e565b600080600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000326919062000b77565b60405180910390a35050565b600080828462000343919062000b94565b9050838110156200038b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003829062000c1f565b60405180910390fd5b8091505092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003fe82620003b3565b810181811067ffffffffffffffff8211171562000420576200041f620003c4565b5b80604052505050565b60006200043562000395565b9050620004438282620003f3565b919050565b600067ffffffffffffffff821115620004665762000465620003c4565b5b6200047182620003b3565b9050602081019050919050565b60005b838110156200049e57808201518184015260208101905062000481565b60008484015250505050565b6000620004c1620004bb8462000448565b62000429565b905082815260208101848484011115620004e057620004df620003ae565b5b620004ed8482856200047e565b509392505050565b600082601f8301126200050d576200050c620003a9565b5b81516200051f848260208601620004aa565b91505092915050565b600060ff82169050919050565b620005408162000528565b81146200054c57600080fd5b50565b600081519050620005608162000535565b92915050565b6000819050919050565b6200057b8162000566565b81146200058757600080fd5b50565b6000815190506200059b8162000570565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005ce82620005a1565b9050919050565b620005e081620005c1565b8114620005ec57600080fd5b50565b6000815190506200060081620005d5565b92915050565b60006200061382620005a1565b9050919050565b620006258162000606565b81146200063157600080fd5b50565b60008151905062000645816200061a565b92915050565b60008060008060008060c087890312156200066b576200066a6200039f565b5b600087015167ffffffffffffffff8111156200068c576200068b620003a4565b5b6200069a89828a01620004f5565b965050602087015167ffffffffffffffff811115620006be57620006bd620003a4565b5b620006cc89828a01620004f5565b9550506040620006df89828a016200054f565b9450506060620006f289828a016200058a565b93505060806200070589828a01620005ef565b92505060a06200071889828a0162000634565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200077857607f821691505b6020821081036200078e576200078d62000730565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007f87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007b9565b620008048683620007b9565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000847620008416200083b8462000566565b6200081c565b62000566565b9050919050565b6000819050919050565b620008638362000826565b6200087b62000872826200084e565b848454620007c6565b825550505050565b600090565b6200089262000883565b6200089f81848462000858565b505050565b5b81811015620008c757620008bb60008262000888565b600181019050620008a5565b5050565b601f8211156200091657620008e08162000794565b620008eb84620007a9565b81016020851015620008fb578190505b620009136200090a85620007a9565b830182620008a4565b50505b505050565b600082821c905092915050565b60006200093b600019846008026200091b565b1980831691505092915050565b600062000956838362000928565b9150826002028217905092915050565b620009718262000725565b67ffffffffffffffff8111156200098d576200098c620003c4565b5b6200099982546200075f565b620009a6828285620008cb565b600060209050601f831160018114620009de5760008415620009c9578287015190505b620009d5858262000948565b86555062000a45565b601f198416620009ee8662000794565b60005b8281101562000a1857848901518255600182019150602085019450602081019050620009f1565b8683101562000a38578489015162000a34601f89168262000928565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a96601f8362000a4d565b915062000aa38262000a5e565b602082019050919050565b6000602082019050818103600083015262000ac98162000a87565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b3b8262000566565b915062000b488362000566565b92508262000b5b5762000b5a62000ad0565b5b828204905092915050565b62000b718162000566565b82525050565b600060208201905062000b8e600083018462000b66565b92915050565b600062000ba18262000566565b915062000bae8362000566565b925082820190508082111562000bc95762000bc862000aff565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062000c07601b8362000a4d565b915062000c148262000bcf565b602082019050919050565b6000602082019050818103600083015262000c3a8162000bf8565b9050919050565b6115508062000c516000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806342966c681161007157806342966c68146101a357806370a08231146101bf57806395d89b41146101ef578063a457c2d71461020d578063a9059cbb1461023d578063dd62ed3e1461026d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029d565b6040516100ce9190610df2565b60405180910390f35b6100f160048036038101906100ec9190610ead565b61032f565b6040516100fe9190610f08565b60405180910390f35b61010f610346565b60405161011c9190610f32565b60405180910390f35b61013f600480360381019061013a9190610f4d565b610350565b60405161014c9190610f08565b60405180910390f35b61015d610401565b60405161016a9190610fbc565b60405180910390f35b61018d60048036038101906101889190610ead565b610418565b60405161019a9190610f08565b60405180910390f35b6101bd60048036038101906101b89190610fd7565b6104bd565b005b6101d960048036038101906101d49190611004565b6104ca565b6040516101e69190610f32565b60405180910390f35b6101f7610512565b6040516102049190610df2565b60405180910390f35b61022760048036038101906102229190610ead565b6105a4565b6040516102349190610f08565b60405180910390f35b61025760048036038101906102529190610ead565b610649565b6040516102649190610f08565b60405180910390f35b61028760048036038101906102829190611031565b610660565b6040516102949190610f32565b60405180910390f35b6060600480546102ac906110a0565b80601f01602080910402602001604051908101604052809291908181526020018280546102d8906110a0565b80156103255780601f106102fa57610100808354040283529160200191610325565b820191906000526020600020905b81548152906001019060200180831161030857829003601f168201915b5050505050905090565b600061033c338484610745565b6001905092915050565b6000600254905090565b600061035d84848461090e565b6103f684336103f185600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b7c90919063ffffffff16565b610745565b600190509392505050565b6000600660009054906101000a900460ff16905090565b60006104b333846104ae85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e790919063ffffffff16565b610745565b6001905092915050565b6104c73382610bdb565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060058054610521906110a0565b80601f016020809104026020016040519081016040528092919081815260200182805461054d906110a0565b801561059a5780601f1061056f5761010080835404028352916020019161059a565b820191906000526020600020905b81548152906001019060200180831161057d57829003601f168201915b5050505050905090565b600061063f338461063a85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b7c90919063ffffffff16565b610745565b6001905092915050565b600061065633848461090e565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008082846106f69190611100565b90508381101561073b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073290611180565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab90611212565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081a906112a4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109019190610f32565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361097d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097490611336565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e3906113c8565b60405180910390fd5b610a3d816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b7c90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ad0816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e790919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b6f9190610f32565b60405180910390a3505050565b600082821115610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890611434565b60405180910390fd5b60008284610bcf9190611454565b90508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c41906114fa565b60405180910390fd5b610c5f81600254610b7c90919063ffffffff16565b600281905550610cb6816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b7c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d569190610f32565b60405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d9c578082015181840152602081019050610d81565b60008484015250505050565b6000601f19601f8301169050919050565b6000610dc482610d62565b610dce8185610d6d565b9350610dde818560208601610d7e565b610de781610da8565b840191505092915050565b60006020820190508181036000830152610e0c8184610db9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e4482610e19565b9050919050565b610e5481610e39565b8114610e5f57600080fd5b50565b600081359050610e7181610e4b565b92915050565b6000819050919050565b610e8a81610e77565b8114610e9557600080fd5b50565b600081359050610ea781610e81565b92915050565b60008060408385031215610ec457610ec3610e14565b5b6000610ed285828601610e62565b9250506020610ee385828601610e98565b9150509250929050565b60008115159050919050565b610f0281610eed565b82525050565b6000602082019050610f1d6000830184610ef9565b92915050565b610f2c81610e77565b82525050565b6000602082019050610f476000830184610f23565b92915050565b600080600060608486031215610f6657610f65610e14565b5b6000610f7486828701610e62565b9350506020610f8586828701610e62565b9250506040610f9686828701610e98565b9150509250925092565b600060ff82169050919050565b610fb681610fa0565b82525050565b6000602082019050610fd16000830184610fad565b92915050565b600060208284031215610fed57610fec610e14565b5b6000610ffb84828501610e98565b91505092915050565b60006020828403121561101a57611019610e14565b5b600061102884828501610e62565b91505092915050565b6000806040838503121561104857611047610e14565b5b600061105685828601610e62565b925050602061106785828601610e62565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806110b857607f821691505b6020821081036110cb576110ca611071565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061110b82610e77565b915061111683610e77565b925082820190508082111561112e5761112d6110d1565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061116a601b83610d6d565b915061117582611134565b602082019050919050565b600060208201905081810360008301526111998161115d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006111fc602483610d6d565b9150611207826111a0565b604082019050919050565b6000602082019050818103600083015261122b816111ef565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061128e602283610d6d565b915061129982611232565b604082019050919050565b600060208201905081810360008301526112bd81611281565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611320602583610d6d565b915061132b826112c4565b604082019050919050565b6000602082019050818103600083015261134f81611313565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006113b2602383610d6d565b91506113bd82611356565b604082019050919050565b600060208201905081810360008301526113e1816113a5565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b600061141e601e83610d6d565b9150611429826113e8565b602082019050919050565b6000602082019050818103600083015261144d81611411565b9050919050565b600061145f82610e77565b915061146a83610e77565b9250828203905081811115611482576114816110d1565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006114e4602183610d6d565b91506114ef82611488565b604082019050919050565b60006020820190508181036000830152611513816114d7565b905091905056fea264697066735822122027787bcf6e922968a2335a148319df0d0d3b5710c6faf5b279bc454108a80b5d64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000130000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000a50b0437dffcabb74f62a7ea172a6158d42b4460000000000000000000000000a50b0437dffcabb74f62a7ea172a6158d42b4460000000000000000000000000000000000000000000000000000000000000000f42616e6b206f6620416d6572696361000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024241000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806342966c681161007157806342966c68146101a357806370a08231146101bf57806395d89b41146101ef578063a457c2d71461020d578063a9059cbb1461023d578063dd62ed3e1461026d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029d565b6040516100ce9190610df2565b60405180910390f35b6100f160048036038101906100ec9190610ead565b61032f565b6040516100fe9190610f08565b60405180910390f35b61010f610346565b60405161011c9190610f32565b60405180910390f35b61013f600480360381019061013a9190610f4d565b610350565b60405161014c9190610f08565b60405180910390f35b61015d610401565b60405161016a9190610fbc565b60405180910390f35b61018d60048036038101906101889190610ead565b610418565b60405161019a9190610f08565b60405180910390f35b6101bd60048036038101906101b89190610fd7565b6104bd565b005b6101d960048036038101906101d49190611004565b6104ca565b6040516101e69190610f32565b60405180910390f35b6101f7610512565b6040516102049190610df2565b60405180910390f35b61022760048036038101906102229190610ead565b6105a4565b6040516102349190610f08565b60405180910390f35b61025760048036038101906102529190610ead565b610649565b6040516102649190610f08565b60405180910390f35b61028760048036038101906102829190611031565b610660565b6040516102949190610f32565b60405180910390f35b6060600480546102ac906110a0565b80601f01602080910402602001604051908101604052809291908181526020018280546102d8906110a0565b80156103255780601f106102fa57610100808354040283529160200191610325565b820191906000526020600020905b81548152906001019060200180831161030857829003601f168201915b5050505050905090565b600061033c338484610745565b6001905092915050565b6000600254905090565b600061035d84848461090e565b6103f684336103f185600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b7c90919063ffffffff16565b610745565b600190509392505050565b6000600660009054906101000a900460ff16905090565b60006104b333846104ae85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e790919063ffffffff16565b610745565b6001905092915050565b6104c73382610bdb565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060058054610521906110a0565b80601f016020809104026020016040519081016040528092919081815260200182805461054d906110a0565b801561059a5780601f1061056f5761010080835404028352916020019161059a565b820191906000526020600020905b81548152906001019060200180831161057d57829003601f168201915b5050505050905090565b600061063f338461063a85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b7c90919063ffffffff16565b610745565b6001905092915050565b600061065633848461090e565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60008082846106f69190611100565b90508381101561073b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073290611180565b60405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab90611212565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081a906112a4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109019190610f32565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361097d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097490611336565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e3906113c8565b60405180910390fd5b610a3d816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b7c90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ad0816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106e790919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b6f9190610f32565b60405180910390a3505050565b600082821115610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890611434565b60405180910390fd5b60008284610bcf9190611454565b90508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c41906114fa565b60405180910390fd5b610c5f81600254610b7c90919063ffffffff16565b600281905550610cb6816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610b7c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d569190610f32565b60405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d9c578082015181840152602081019050610d81565b60008484015250505050565b6000601f19601f8301169050919050565b6000610dc482610d62565b610dce8185610d6d565b9350610dde818560208601610d7e565b610de781610da8565b840191505092915050565b60006020820190508181036000830152610e0c8184610db9565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e4482610e19565b9050919050565b610e5481610e39565b8114610e5f57600080fd5b50565b600081359050610e7181610e4b565b92915050565b6000819050919050565b610e8a81610e77565b8114610e9557600080fd5b50565b600081359050610ea781610e81565b92915050565b60008060408385031215610ec457610ec3610e14565b5b6000610ed285828601610e62565b9250506020610ee385828601610e98565b9150509250929050565b60008115159050919050565b610f0281610eed565b82525050565b6000602082019050610f1d6000830184610ef9565b92915050565b610f2c81610e77565b82525050565b6000602082019050610f476000830184610f23565b92915050565b600080600060608486031215610f6657610f65610e14565b5b6000610f7486828701610e62565b9350506020610f8586828701610e62565b9250506040610f9686828701610e98565b9150509250925092565b600060ff82169050919050565b610fb681610fa0565b82525050565b6000602082019050610fd16000830184610fad565b92915050565b600060208284031215610fed57610fec610e14565b5b6000610ffb84828501610e98565b91505092915050565b60006020828403121561101a57611019610e14565b5b600061102884828501610e62565b91505092915050565b6000806040838503121561104857611047610e14565b5b600061105685828601610e62565b925050602061106785828601610e62565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806110b857607f821691505b6020821081036110cb576110ca611071565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061110b82610e77565b915061111683610e77565b925082820190508082111561112e5761112d6110d1565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061116a601b83610d6d565b915061117582611134565b602082019050919050565b600060208201905081810360008301526111998161115d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006111fc602483610d6d565b9150611207826111a0565b604082019050919050565b6000602082019050818103600083015261122b816111ef565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061128e602283610d6d565b915061129982611232565b604082019050919050565b600060208201905081810360008301526112bd81611281565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611320602583610d6d565b915061132b826112c4565b604082019050919050565b6000602082019050818103600083015261134f81611313565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006113b2602383610d6d565b91506113bd82611356565b604082019050919050565b600060208201905081810360008301526113e1816113a5565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b600061141e601e83610d6d565b9150611429826113e8565b602082019050919050565b6000602082019050818103600083015261144d81611411565b9050919050565b600061145f82610e77565b915061146a83610e77565b9250828203905081811115611482576114816110d1565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006114e4602183610d6d565b91506114ef82611488565b604082019050919050565b60006020820190508181036000830152611513816114d7565b905091905056fea264697066735822122027787bcf6e922968a2335a148319df0d0d3b5710c6faf5b279bc454108a80b5d64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000130000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000a50b0437dffcabb74f62a7ea172a6158d42b4460000000000000000000000000a50b0437dffcabb74f62a7ea172a6158d42b4460000000000000000000000000000000000000000000000000000000000000000f42616e6b206f6620416d6572696361000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024241000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Bank of America
Arg [1] : symbol (string): BA
Arg [2] : decimals (uint8): 19
Arg [3] : totalSupply (uint256): 1000000000000000000000000000
Arg [4] : feeReceiver (address): 0xa50B0437DFFcaBb74F62A7ea172A6158D42B4460
Arg [5] : tokenOwnerAddress (address): 0xa50B0437DFFcaBb74F62A7ea172A6158D42B4460

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [3] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [4] : 000000000000000000000000a50b0437dffcabb74f62a7ea172a6158d42b4460
Arg [5] : 000000000000000000000000a50b0437dffcabb74f62a7ea172a6158d42b4460
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [7] : 42616e6b206f6620416d65726963610000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 4241000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

15064:1700:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16368:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9133:148;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8156:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9752:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16680:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10417:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16177:77;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8310:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16516:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11126:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8633:156;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8852:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16368:81;16405:13;16436:5;16429:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16368:81;:::o;9133:148::-;9198:4;9215:36;9224:10;9236:7;9245:5;9215:8;:36::i;:::-;9269:4;9262:11;;9133:148;;;;:::o;8156:91::-;8200:7;8227:12;;8220:19;;8156:91;:::o;9752:256::-;9841:4;9858:36;9868:6;9876:9;9887:6;9858:9;:36::i;:::-;9905:73;9914:6;9922:10;9934:43;9970:6;9934:11;:19;9946:6;9934:19;;;;;;;;;;;;;;;:31;9954:10;9934:31;;;;;;;;;;;;;;;;:35;;:43;;;;:::i;:::-;9905:8;:73::i;:::-;9996:4;9989:11;;9752:256;;;;;:::o;16680:81::-;16721:5;16744:9;;;;;;;;;;;16737:16;;16680:81;:::o;10417:206::-;10497:4;10514:79;10523:10;10535:7;10544:48;10581:10;10544:11;:23;10556:10;10544:23;;;;;;;;;;;;;;;:32;10568:7;10544:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;10514:8;:79::i;:::-;10611:4;10604:11;;10417:206;;;;:::o;16177:77::-;16222:24;16228:10;16240:5;16222;:24::i;:::-;16177:77;:::o;8310:110::-;8367:7;8394:9;:18;8404:7;8394:18;;;;;;;;;;;;;;;;8387:25;;8310:110;;;:::o;16516:85::-;16555:13;16586:7;16579:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16516:85;:::o;11126:216::-;11211:4;11228:84;11237:10;11249:7;11258:53;11295:15;11258:11;:23;11270:10;11258:23;;;;;;;;;;;;;;;:32;11282:7;11258:32;;;;;;;;;;;;;;;;:36;;:53;;;;:::i;:::-;11228:8;:84::i;:::-;11330:4;11323:11;;11126:216;;;;:::o;8633:156::-;8702:4;8719:40;8729:10;8741:9;8752:6;8719:9;:40::i;:::-;8777:4;8770:11;;8633:156;;;;:::o;8852:134::-;8924:7;8951:11;:18;8963:5;8951:18;;;;;;;;;;;;;;;:27;8970:7;8951:27;;;;;;;;;;;;;;;;8944:34;;8852:134;;;;:::o;3743:181::-;3801:7;3821:9;3837:1;3833;:5;;;;:::i;:::-;3821:17;;3862:1;3857;:6;;3849:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;3915:1;3908:8;;;3743:181;;;;:::o;13977:335::-;14087:1;14070:19;;:5;:19;;;14062:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14168:1;14149:21;;:7;:21;;;14141:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14252:5;14222:11;:18;14234:5;14222:18;;;;;;;;;;;;;;;:27;14241:7;14222:27;;;;;;;;;;;;;;;:35;;;;14289:7;14273:31;;14282:5;14273:31;;;14298:5;14273:31;;;;;;:::i;:::-;;;;;;;;13977:335;;;:::o;11832:429::-;11948:1;11930:20;;:6;:20;;;11922:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12032:1;12011:23;;:9;:23;;;12003:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12107:29;12129:6;12107:9;:17;12117:6;12107:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;12087:9;:17;12097:6;12087:17;;;;;;;;;;;;;;;:49;;;;12170:32;12195:6;12170:9;:20;12180:9;12170:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;12147:9;:20;12157:9;12147:20;;;;;;;;;;;;;;;:55;;;;12235:9;12218:35;;12227:6;12218:35;;;12246:6;12218:35;;;;;;:::i;:::-;;;;;;;;11832:429;;;:::o;4199:184::-;4257:7;4290:1;4285;:6;;4277:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;4337:9;4353:1;4349;:5;;;;:::i;:::-;4337:17;;4374:1;4367:8;;;4199:184;;;;:::o;13231:306::-;13325:1;13306:21;;:7;:21;;;13298:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13393:23;13410:5;13393:12;;:16;;:23;;;;:::i;:::-;13378:12;:38;;;;13448:29;13471:5;13448:9;:18;13458:7;13448:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;13427:9;:18;13437:7;13427:18;;;;;;;;;;;;;;;:50;;;;13519:1;13493:36;;13502:7;13493:36;;;13523:5;13493:36;;;;;;:::i;:::-;;;;;;;;13231:306;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:474::-;5591:6;5599;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5901:2;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5872:118;5523:474;;;;;:::o;6003:180::-;6051:77;6048:1;6041:88;6148:4;6145:1;6138:15;6172:4;6169:1;6162:15;6189:320;6233:6;6270:1;6264:4;6260:12;6250:22;;6317:1;6311:4;6307:12;6338:18;6328:81;;6394:4;6386:6;6382:17;6372:27;;6328:81;6456:2;6448:6;6445:14;6425:18;6422:38;6419:84;;6475:18;;:::i;:::-;6419:84;6240:269;6189:320;;;:::o;6515:180::-;6563:77;6560:1;6553:88;6660:4;6657:1;6650:15;6684:4;6681:1;6674:15;6701:191;6741:3;6760:20;6778:1;6760:20;:::i;:::-;6755:25;;6794:20;6812:1;6794:20;:::i;:::-;6789:25;;6837:1;6834;6830:9;6823:16;;6858:3;6855:1;6852:10;6849:36;;;6865:18;;:::i;:::-;6849:36;6701:191;;;;:::o;6898:177::-;7038:29;7034:1;7026:6;7022:14;7015:53;6898:177;:::o;7081:366::-;7223:3;7244:67;7308:2;7303:3;7244:67;:::i;:::-;7237:74;;7320:93;7409:3;7320:93;:::i;:::-;7438:2;7433:3;7429:12;7422:19;;7081:366;;;:::o;7453:419::-;7619:4;7657:2;7646:9;7642:18;7634:26;;7706:9;7700:4;7696:20;7692:1;7681:9;7677:17;7670:47;7734:131;7860:4;7734:131;:::i;:::-;7726:139;;7453:419;;;:::o;7878:223::-;8018:34;8014:1;8006:6;8002:14;7995:58;8087:6;8082:2;8074:6;8070:15;8063:31;7878:223;:::o;8107:366::-;8249:3;8270:67;8334:2;8329:3;8270:67;:::i;:::-;8263:74;;8346:93;8435:3;8346:93;:::i;:::-;8464:2;8459:3;8455:12;8448:19;;8107:366;;;:::o;8479:419::-;8645:4;8683:2;8672:9;8668:18;8660:26;;8732:9;8726:4;8722:20;8718:1;8707:9;8703:17;8696:47;8760:131;8886:4;8760:131;:::i;:::-;8752:139;;8479:419;;;:::o;8904:221::-;9044:34;9040:1;9032:6;9028:14;9021:58;9113:4;9108:2;9100:6;9096:15;9089:29;8904:221;:::o;9131:366::-;9273:3;9294:67;9358:2;9353:3;9294:67;:::i;:::-;9287:74;;9370:93;9459:3;9370:93;:::i;:::-;9488:2;9483:3;9479:12;9472:19;;9131:366;;;:::o;9503:419::-;9669:4;9707:2;9696:9;9692:18;9684:26;;9756:9;9750:4;9746:20;9742:1;9731:9;9727:17;9720:47;9784:131;9910:4;9784:131;:::i;:::-;9776:139;;9503:419;;;:::o;9928:224::-;10068:34;10064:1;10056:6;10052:14;10045:58;10137:7;10132:2;10124:6;10120:15;10113:32;9928:224;:::o;10158:366::-;10300:3;10321:67;10385:2;10380:3;10321:67;:::i;:::-;10314:74;;10397:93;10486:3;10397:93;:::i;:::-;10515:2;10510:3;10506:12;10499:19;;10158:366;;;:::o;10530:419::-;10696:4;10734:2;10723:9;10719:18;10711:26;;10783:9;10777:4;10773:20;10769:1;10758:9;10754:17;10747:47;10811:131;10937:4;10811:131;:::i;:::-;10803:139;;10530:419;;;:::o;10955:222::-;11095:34;11091:1;11083:6;11079:14;11072:58;11164:5;11159:2;11151:6;11147:15;11140:30;10955:222;:::o;11183:366::-;11325:3;11346:67;11410:2;11405:3;11346:67;:::i;:::-;11339:74;;11422:93;11511:3;11422:93;:::i;:::-;11540:2;11535:3;11531:12;11524:19;;11183:366;;;:::o;11555:419::-;11721:4;11759:2;11748:9;11744:18;11736:26;;11808:9;11802:4;11798:20;11794:1;11783:9;11779:17;11772:47;11836:131;11962:4;11836:131;:::i;:::-;11828:139;;11555:419;;;:::o;11980:180::-;12120:32;12116:1;12108:6;12104:14;12097:56;11980:180;:::o;12166:366::-;12308:3;12329:67;12393:2;12388:3;12329:67;:::i;:::-;12322:74;;12405:93;12494:3;12405:93;:::i;:::-;12523:2;12518:3;12514:12;12507:19;;12166:366;;;:::o;12538:419::-;12704:4;12742:2;12731:9;12727:18;12719:26;;12791:9;12785:4;12781:20;12777:1;12766:9;12762:17;12755:47;12819:131;12945:4;12819:131;:::i;:::-;12811:139;;12538:419;;;:::o;12963:194::-;13003:4;13023:20;13041:1;13023:20;:::i;:::-;13018:25;;13057:20;13075:1;13057:20;:::i;:::-;13052:25;;13101:1;13098;13094:9;13086:17;;13125:1;13119:4;13116:11;13113:37;;;13130:18;;:::i;:::-;13113:37;12963:194;;;;:::o;13163:220::-;13303:34;13299:1;13291:6;13287:14;13280:58;13372:3;13367:2;13359:6;13355:15;13348:28;13163:220;:::o;13389:366::-;13531:3;13552:67;13616:2;13611:3;13552:67;:::i;:::-;13545:74;;13628:93;13717:3;13628:93;:::i;:::-;13746:2;13741:3;13737:12;13730:19;;13389:366;;;:::o;13761:419::-;13927:4;13965:2;13954:9;13950:18;13942:26;;14014:9;14008:4;14004:20;14000:1;13989:9;13985:17;13978:47;14042:131;14168:4;14042:131;:::i;:::-;14034:139;;13761:419;;;:::o

Swarm Source

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